blob: 8709e71fb3667a66e77493205fa742a0b17d974b (
plain)
1
2
3
4
5
6
|
// RUN: clang -mno-red-zone %s -S -emit-llvm -o %t.log &&
// RUN: grep 'noredzone' %t.log
// RUN: clang -mred-zone %s -S -emit-llvm -o %t.log &&
// RUN: grep -v 'noredzone' %t.log
int foo() { return 42; }
|