24 lines
1.3 KiB
C
24 lines
1.3 KiB
C
// REQUIRES: mips-registered-target
|
|
// -mindirect-jump=hazard -mips32
|
|
// RUN: %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: %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: %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: %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: %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'
|