Daniel Dunbar | 0c33f44 | 2009-09-14 20:21:18 +0000 | [diff] [blame] | 1 | // RUN: clang -ccc-host-triple i386-unknown-unknown -mno-red-zone %s -S -emit-llvm -o %t.log && |
Daniel Dunbar | 97ea867 | 2009-07-25 11:27:37 +0000 | [diff] [blame] | 2 | // RUN: grep 'noredzone' %t.log && |
Daniel Dunbar | 0c33f44 | 2009-09-14 20:21:18 +0000 | [diff] [blame] | 3 | // RUN: clang -ccc-host-triple i386-unknown-unknown -mred-zone %s -S -emit-llvm -o %t.log && |
Devang Patel | 21dd8d4 | 2009-06-04 23:45:55 +0000 | [diff] [blame] | 4 | // RUN: grep -v 'noredzone' %t.log |
| 5 | |
| 6 | int foo() { return 42; } |