1 // RUN: %clang_cc1 -emit-llvm -o %t %s
2 // RUN: grep "@pipe()" %t | count 0
3 // RUN: grep '_thisIsNotAPipe' %t | count 3
4 // RUN: grep 'g0' %t | count 0
5 // RUN: grep '_renamed' %t | count 2
6 // RUN: %clang_cc1 -DUSE_DEF -emit-llvm -o %t %s
7 // RUN: grep "@pipe()" %t | count 0
8 // RUN: grep '_thisIsNotAPipe' %t | count 3
11 void pipe() asm("_thisIsNotAPipe");
30 extern int g0
asm("_renamed");