Daniel Dunbar | 4fcfde4 | 2009-11-08 01:45:36 +0000 | [diff] [blame] | 1 | // RUN: clang -ccc-host-triple i386-unknown-unknown -mno-red-zone %s -S -emit-llvm -o %t.log |
2 | // RUN: grep 'noredzone' %t.log | ||||
3 | // RUN: clang -ccc-host-triple i386-unknown-unknown -mred-zone %s -S -emit-llvm -o %t.log | ||||
Devang Patel | a59cadc | 2009-06-04 23:45:55 +0000 | [diff] [blame] | 4 | // RUN: grep -v 'noredzone' %t.log |
5 | |||||
6 | int foo() { return 42; } |