Akira Hatanaka | aecca04 | 2015-09-11 18:55:09 +0000 | [diff] [blame] | 1 | // RUN: %clang -### %s 2>&1 | FileCheck %s -check-prefix=NO-REALIGN |
| 2 | // RUN: %clang -### -mno-stackrealign -mstackrealign %s 2>&1 | FileCheck %s -check-prefix=REALIGN |
| 3 | // RUN: %clang -### -mstackrealign -mno-stackrealign %s 2>&1 | FileCheck %s -check-prefix=NO-REALIGN |
NAKAMURA Takumi | 78ee1e5 | 2015-09-12 01:29:35 +0000 | [diff] [blame] | 4 | // REQUIRES: clang-driver |
Nick Lewycky | f4d3f7a | 2011-12-06 03:33:03 +0000 | [diff] [blame] | 5 | |
Akira Hatanaka | aecca04 | 2015-09-11 18:55:09 +0000 | [diff] [blame] | 6 | // REALIGN: -mstackrealign |
| 7 | // NO-REALIGN-NOT: -mstackrealign |