Alphabetize includes.
[oota-llvm.git] / test / FrontendC / x86-64-red-zone.c
1 // RUN: $llvmgcc -m64 -fomit-frame-pointer -O2 %s -S -o - > %t
2 // RUN: not grep subq %t
3 // RUN: not grep addq %t
4 // RUN: grep {\\-4(%%rsp)} %t | count 2
5 // RUN: $llvmgcc -m64 -fomit-frame-pointer -O2 %s -S -o - -mno-red-zone > %t
6 // RUN: grep subq %t | count 1
7 // RUN: grep addq %t | count 1
8 // This is a test for x86-64, add your target below if it FAILs.
9 // XFAIL: alpha|ia64|arm|powerpc|sparc|i.86
10
11 long double f0(float f) { return f; }