blob: 16283130beb0970d4c2d8b1f8bbe904f1d8d8ad1 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 %s -emit-llvm -o - | opt -std-compile-opts | llc | \
2// RUN: not grep _foo2
3
4void foo() __asm__("foo2");
5
6void bar() {
7 foo();
8}