mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
7941bdbfaa
llvm-svn: 36082
9 lines
152 B
C
9 lines
152 B
C
// RUN: %llvmgcc %s -S -o - | llvm-as | opt -std-compile-opts | llc | \
|
|
// RUN: not grep _foo2
|
|
|
|
void foo() __asm__("foo2");
|
|
|
|
void bar() {
|
|
foo();
|
|
}
|