Removed foo-registered-target constraints from a bunch of tests, because mostly the driver doesn't need to have a target availabile. I ran check-clang-driver using a build with only the XCore target, and these all passed. There are ~50 tests that still have foo-registered-target, and it looks like most of them are either doing codegen when they don't need to, or don't really belong in the Driver tests. But that's a task for another day.
23 lines
1.3 KiB
C
23 lines
1.3 KiB
C
// -mindirect-jump=hazard -mips32
|
|
// RUN: not %clang --target=mips-unknown-linux-gnu -mips32 -### -c %s \
|
|
// RUN: -mindirect-jump=hazard 2>&1 | FileCheck %s --check-prefix=MIPS32
|
|
// MIPS32: error: '-mindirect-jump=hazard' is unsupported with the 'mips32' architecture
|
|
|
|
// -mindirect-jump=hazard -mmicromips
|
|
// RUN: not %clang --target=mips-unknown-linux-gnu -mmicromips -### -c %s \
|
|
// RUN: -mindirect-jump=hazard 2>&1 | FileCheck %s --check-prefix=MICROMIPS
|
|
// MICROMIPS: error: '-mindirect-jump=hazard' is unsupported with the 'micromips' architecture
|
|
|
|
// -mindirect-jump=hazard -mips16
|
|
// RUN: not %clang --target=mips-unknown-linux-gnu -mips16 -### -c %s \
|
|
// RUN: -mindirect-jump=hazard 2>&1 | FileCheck %s --check-prefix=MIPS16
|
|
// MIPS16: error: '-mindirect-jump=hazard' is unsupported with the 'mips16' architecture
|
|
|
|
// RUN: not %clang --target=mips-unknown-linux-gnu -### -c %s \
|
|
// RUN: -mindirect-jump=retopline 2>&1 | FileCheck %s --check-prefix=RETOPLINE
|
|
// RETOPLINE: error: unknown '-mindirect-jump=' option 'retopline'
|
|
|
|
// RUN: not %clang --target=mips-unknown-linux-gnu -### -mips32 -c %s \
|
|
// RUN: -mindirect-jump=retopline 2>&1 | FileCheck %s --check-prefix=MIXED
|
|
// MIXED: error: unknown '-mindirect-jump=' option 'retopline'
|