Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
f7603f6ca76aec055cbf1644c89ce0dca9fa2c03
/
.
/
test
/
Frontend
/
ast-codegen.c
blob: b5b2157e21aea20014ca85ed52f242fdecc3e431 [
file
] [
log
] [
blame
]
// RUN: %clang -emit-ast -o %t.ast %s
// RUN: %clang -emit-llvm -S -o - %t.ast | FileCheck %s
// CHECK: module asm "foo"
__asm__
(
"foo"
);
// CHECK: @g0 = common global i32 0, align 4
int
g0
;
// CHECK: define i32 @f0()
int
f0
()
{
}