llvm-6502/test/FrontendC/2005-09-24-AsmUserPrefix.c
2009-12-05 00:02:37 +00:00

9 lines
142 B
C

// RUN: %llvmgcc %s -S -o - | opt -std-compile-opts | llc | \
// RUN: not grep _foo2
void foo() __asm__("foo2");
void bar() {
foo();
}