mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-26 06:48:51 -04:00

clang ' or ' clang -cc1 ' or ' clang-cc ' in test lines (by substituting them to garbage). llvm-svn: 91460
7 lines
163 B
C
7 lines
163 B
C
// RUN: %clang -emit-llvm -S -o %t %s
|
|
// RUN: grep '@x = common global' %t
|
|
// RUN: %clang -fno-common -emit-llvm -S -o %t %s
|
|
// RUN: grep '@x = global' %t
|
|
|
|
int x;
|