Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Driver / msp430-mmcu.c
blob6b28601656b3d8557bb2b21d00039410ff4d8eef
1 // RUN: %clang -### %s --target=msp430 -mmcu=msp430c111 2>&1 \
2 // RUN: | FileCheck -check-prefix=MSP430-C111 %s
4 // MSP430-C111: "-cc1" {{.*}} "-D__MSP430C111__"
5 // MSP430-C111: msp430-elf-ld{{.*}} "-Tmsp430c111.ld"
7 // RUN: %clang -### %s --target=msp430 -mmcu=msp430i2020 2>&1 \
8 // RUN: | FileCheck -check-prefix=MSP430-I2020 %s
10 // MSP430-I2020: "-cc1" {{.*}} "-D__MSP430i2020__"
11 // MSP430-I2020: msp430-elf-ld{{.*}} "-Tmsp430i2020.ld"
13 // RUN: not %clang -### %s --target=msp430 -mmcu=not-a-mcu 2>&1 \
14 // RUN: | FileCheck -check-prefix=MSP430-UNSUP %s
16 // MSP430-UNSUP: error: the clang compiler does not support 'not-a-mcu'
18 // The generic MCU name "msp430" is not supported.
19 // RUN: not %clang -### %s --target=msp430 -mmcu=msp430 2>&1 \
20 // RUN: | FileCheck -check-prefix=MSP430 %s
22 // MSP430: error: the clang compiler does not support 'msp430'