Sign in
llvm
/
llvm-project
/
51a86e75ddf3eac3057c901bbe5e750dea62c7c1
/
.
/
clang
/
test
/
CIR
/
CodeGen
/
module-asm.c
blob: e6cec5e0ee9480fc21a0d83238e034f961b40297 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-cir %s -o %t.cir
// RUN: FileCheck --input-file=%t.cir %s
// CHECK: cir.module_asm = [".globl bar", ".globl foo"]
__asm
(
".globl bar"
);
__asm
(
".globl foo"
);