brintos

brintos / llvm-project-archived public Read only

0
0
Text · 666 B · 031ccc2 Raw
10 lines · cpp
1// These shouldn't be valid -fc++-abi values.2// RUN: not %clang_cc1 -emit-llvm -o /dev/null -fc++-abi=InvalidABI %s 2>&1 | FileCheck %s -check-prefix=INVALID3// RUN: not %clang_cc1 -emit-llvm -o /dev/null -fc++-abi=Fuchsia %s 2>&1 | FileCheck %s -check-prefix=CASE-SENSITIVE4// INVALID: error: invalid C++ ABI name 'InvalidABI'5// CASE-SENSITIVE: error: invalid C++ ABI name 'Fuchsia'6 7// Some C++ ABIs are not supported on some platforms.8// RUN: not %clang_cc1 -emit-llvm -o /dev/null -fc++-abi=fuchsia -triple i386 %s 2>&1 | FileCheck %s -check-prefix=UNSUPPORTED-FUCHSIA9// UNSUPPORTED-FUCHSIA: error: C++ ABI 'fuchsia' is not supported on target triple 'i386'10