aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/2005-09-24-AsmUserPrefix.c
blob: eb5b5048c816d3d0b63ac5cc2b43bd5c08dca4e5 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 %s -emit-llvm -o - | opt -O3 | llc | \
// RUN:    not grep _foo2

void foo(void) __asm__("foo2");

void bar(void) {
  foo();
}