blob: d0e5bd1c3a444d2091a8805e0b9d083606803828 [file] [log] [blame]
Rafael Espindolac55172e2014-10-16 20:00:22 +00001// RUN: %clang_cc1 %s -emit-llvm -o - | opt -O3 | llc | \
Eric Christopher85e51562011-07-26 22:17:02 +00002// RUN: not grep _foo2
3
4void foo() __asm__("foo2");
5
6void bar() {
7 foo();
8}