aboutsummaryrefslogtreecommitdiff
path: root/test/Frontend/ast-codegen.c
blob: e1140fdd8b27e4e298ffc63957b7adc4ab6d2ed0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// REQUIRES: x86-registered-target
// RUN: %clang -target i386-unknown-unknown -emit-ast -o %t.ast %s
// RUN: %clang -target i386-unknown-unknown -emit-llvm -S -o - %t.ast | FileCheck %s

// CHECK: module asm "foo"
__asm__("foo");

// CHECK: @g0 = common dso_local global i32 0, align 4
int g0;

// CHECK: define dso_local i32 @f0()
int f0() {
}