
clang ' or ' clang -cc1 ' or ' clang-cc ' in test lines (by substituting them to garbage). llvm-svn: 91460
7 lines
279 B
C
7 lines
279 B
C
// RUN: %clang -ccc-host-triple i386-unknown-unknown -mno-red-zone %s -S -emit-llvm -o %t.log
|
|
// RUN: grep 'noredzone' %t.log
|
|
// RUN: %clang -ccc-host-triple i386-unknown-unknown -mred-zone %s -S -emit-llvm -o %t.log
|
|
// RUN: grep -v 'noredzone' %t.log
|
|
|
|
int foo() { return 42; }
|