blob: e6cec5e0ee9480fc21a0d83238e034f961b40297 (
plain)
1
2
3
4
5
6
|
// 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");
|