1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/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 10:38:28 +02:00
void foo() __asm__("foo2");
void bar() {
foo();
}