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