1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +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 08:38:28 +00:00
void foo() __asm__("foo2");
void bar() {
foo();
}