blob: 9b9b153e27615ba3c83805535be7d8db16755996 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc %s -S -o - | llvm-as | opt -std-compile-opts | llc | \
2// RUN: not grep _foo2
3
4void foo() __asm__("foo2");
5
6void bar() {
7 foo();
8}