mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 22:16:05 +00:00

It (introduced by 556d713c70bfaf58ac18d089883f9c34c581633a) appears to be related to the removed dragonegg project. In addition, the feature was a bit misnamed and may lur users to unnecessarily use it.
7 lines
329 B
C
7 lines
329 B
C
// RUN: %clang -### %s 2>&1 | FileCheck %s -check-prefix=NO-REALIGN
|
|
// RUN: %clang -### -mno-stackrealign -mstackrealign %s 2>&1 | FileCheck %s -check-prefix=REALIGN
|
|
// RUN: %clang -### -mstackrealign -mno-stackrealign %s 2>&1 | FileCheck %s -check-prefix=NO-REALIGN
|
|
|
|
// REALIGN: -mstackrealign
|
|
// NO-REALIGN-NOT: -mstackrealign
|