1*f4a2713aSLionel Sambuc // RUN: %clang -target i386-unknown-unknown -mno-red-zone %s -S -emit-llvm -o %t.log 2*f4a2713aSLionel Sambuc // RUN: grep 'noredzone' %t.log 3*f4a2713aSLionel Sambuc // RUN: %clang -target i386-unknown-unknown -mred-zone %s -S -emit-llvm -o %t.log 4*f4a2713aSLionel Sambuc // RUN: grep -v 'noredzone' %t.log 5*f4a2713aSLionel Sambuc foo()6*f4a2713aSLionel Sambucint foo() { return 42; } 7