hanchenye-llvm-project/llvm/test/FrontendC/2005-09-24-AsmUserPrefix.c

9 lines
152 B
C
Raw Normal View History

// RUN: %llvmgcc %s -S -o - | llvm-as | opt -std-compile-opts | llc | \
// RUN: not grep _foo2
2005-09-24 16:38:28 +08:00
void foo() __asm__("foo2");
void bar() {
foo();
}