Alexander Richardson 7b7ae72b58
[MSP430] Default to unsigned char (#115964)
This matches the ABI document at https://www.ti.com/lit/pdf/slaa534 as well as the GCC implementation.

Partially fixes https://github.com/llvm/llvm-project/issues/115957
2024-11-14 12:49:02 -08:00

5 lines
176 B
C

/// Check that char is unsigned by default.
// RUN: %clang -### %s --target=msp430 -c 2>&1 | FileCheck %s
// CHECK: "-cc1" "-triple" "msp430"
// CHECK-SAME: "-fno-signed-char"