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