blob: 86f412fb46900f0f0c73fda4209d316c210bbd2e [file] [log] [blame]
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00001// 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 Patela59cadc2009-06-04 23:45:55 +00004// RUN: grep -v 'noredzone' %t.log
5
6int foo() { return 42; }