blob: 952c7b3c35da662499bdd804bdb114c0eda48d86 [file] [log] [blame]
Dan Gohman8a3f6442009-12-05 00:02:37 +00001// RUN: %llvmgcc %s -S -o - | opt -std-compile-opts | llc | \
Reid Spencer1bb52e02007-02-09 15:15:21 +00002// RUN: not grep _foo2
Chris Lattner5fada3b2005-09-24 08:38:28 +00003
4void foo() __asm__("foo2");
5
6void bar() {
7 foo();
8}