
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
5 lines
176 B
C
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"
|