mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
e23727694c
llvm-svn: 90626
9 lines
142 B
C
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();
|
|
}
|