8 lines
146 B
C
8 lines
146 B
C
// RUN: %clang_cc1 %s -emit-llvm -o - | opt -O3 | llc | \
|
|
// RUN: not grep _foo2
|
|
|
|
void foo(void) __asm__("foo2");
|
|
|
|
void bar(void) {
|
|
foo();
|
|
}
|