mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 00:46:06 +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.
9 lines
471 B
C
9 lines
471 B
C
// RUN: %clang -### -target x86_64-linux-gnu %s 2>&1 | FileCheck %s -check-prefix=NO-MSBITFIELDS
|
|
// RUN: %clang -### -target x86_64-windows-gnu %s 2>&1 | FileCheck %s -check-prefix=MSBITFIELDS
|
|
// RUN: %clang -### -mno-ms-bitfields -mms-bitfields %s 2>&1 | FileCheck %s -check-prefix=MSBITFIELDS
|
|
// RUN: %clang -### -mms-bitfields -mno-ms-bitfields %s 2>&1 | FileCheck %s -check-prefix=NO-MSBITFIELDS
|
|
|
|
// MSBITFIELDS: -mms-bitfields
|
|
// NO-MSBITFIELDS-NOT: -mms-bitfields
|
|
|