summaryrefslogtreecommitdiff
path: root/test/FrontendC/2005-09-24-AsmUserPrefix.c
blob: 952c7b3c35da662499bdd804bdb114c0eda48d86 (plain)
1
2
3
4
5
6
7
8
// RUN: %llvmgcc %s -S -o - | opt -std-compile-opts | llc | \
// RUN:    not grep _foo2

void foo() __asm__("foo2");

void bar() {
  foo();
}