blob: 952c7b3c35da662499bdd804bdb114c0eda48d86 [file] [log] [blame]
Dan Gohman2b62af22009-12-05 00:02:37 +00001// RUN: %llvmgcc %s -S -o - | opt -std-compile-opts | llc | \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002// RUN: not grep _foo2
3
4void foo() __asm__("foo2");
5
6void bar() {
7 foo();
8}