blob: d0e5bd1c3a444d2091a8805e0b9d083606803828 [file] [log] [blame]
// RUN: %clang_cc1 %s -emit-llvm -o - | opt -O3 | llc | \
// RUN: not grep _foo2
void foo() __asm__("foo2");
void bar() {
foo();
}