mirror of
https://github.com/intel/llvm.git
synced 2026-01-22 15:41:35 +08:00
9 lines
138 B
C
9 lines
138 B
C
// RUN: %clang_cc1 %s -emit-llvm -o - | opt -O3 | llc | \
|
|
// RUN: not grep _foo2
|
|
|
|
void foo() __asm__("foo2");
|
|
|
|
void bar() {
|
|
foo();
|
|
}
|