diff options
author | Simon Atanasyan <simon@atanasyan.com> | 2014-01-27 13:59:04 +0000 |
---|---|---|
committer | Simon Atanasyan <simon@atanasyan.com> | 2014-01-27 13:59:04 +0000 |
commit | 1a3665b6766a7c1619216164b0e27bb898cc34bf (patch) | |
tree | 5bc9a047da45a78eb09d5d6c10c8cb7a8e704db5 /clang/test/Driver/clang-translation.c | |
parent | 682b49b9ef3b4706e3c601eea9fb63ea7aa840f0 (diff) | |
download | bcm5719-llvm-1a3665b6766a7c1619216164b0e27bb898cc34bf.tar.gz bcm5719-llvm-1a3665b6766a7c1619216164b0e27bb898cc34bf.zip |
[Mips] Change default CPU for MIPS 32/64 targets. Now they are mips32r2/mips64r2 respectively.
llvm-svn: 200222
Diffstat (limited to 'clang/test/Driver/clang-translation.c')
-rw-r--r-- | clang/test/Driver/clang-translation.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/test/Driver/clang-translation.c b/clang/test/Driver/clang-translation.c index 5f9a76b5949..c8574d0b809 100644 --- a/clang/test/Driver/clang-translation.c +++ b/clang/test/Driver/clang-translation.c @@ -222,40 +222,40 @@ // RUN: FileCheck -check-prefix=MIPS %s // MIPS: clang // MIPS: "-cc1" -// MIPS: "-target-cpu" "mips32" +// MIPS: "-target-cpu" "mips32r2" // MIPS: "-mfloat-abi" "hard" // RUN: %clang -target mipsel-linux-gnu -### -S %s 2>&1 | \ // RUN: FileCheck -check-prefix=MIPSEL %s // MIPSEL: clang // MIPSEL: "-cc1" -// MIPSEL: "-target-cpu" "mips32" +// MIPSEL: "-target-cpu" "mips32r2" // MIPSEL: "-mfloat-abi" "hard" // RUN: %clang -target mipsel-linux-android -### -S %s 2>&1 | \ // RUN: FileCheck -check-prefix=MIPSEL-ANDROID %s // MIPSEL-ANDROID: clang // MIPSEL-ANDROID: "-cc1" -// MIPSEL-ANDROID: "-target-cpu" "mips32" +// MIPSEL-ANDROID: "-target-cpu" "mips32r2" // MIPSEL-ANDROID: "-mfloat-abi" "hard" // RUN: %clang -target mips64-linux-gnu -### -S %s 2>&1 | \ // RUN: FileCheck -check-prefix=MIPS64 %s // MIPS64: clang // MIPS64: "-cc1" -// MIPS64: "-target-cpu" "mips64" +// MIPS64: "-target-cpu" "mips64r2" // MIPS64: "-mfloat-abi" "hard" // RUN: %clang -target mips64el-linux-gnu -### -S %s 2>&1 | \ // RUN: FileCheck -check-prefix=MIPS64EL %s // MIPS64EL: clang // MIPS64EL: "-cc1" -// MIPS64EL: "-target-cpu" "mips64" +// MIPS64EL: "-target-cpu" "mips64r2" // MIPS64EL: "-mfloat-abi" "hard" // RUN: %clang -target mips64el-linux-android -### -S %s 2>&1 | \ // RUN: FileCheck -check-prefix=MIPS64EL-ANDROID %s // MIPS64EL-ANDROID: clang // MIPS64EL-ANDROID: "-cc1" -// MIPS64EL-ANDROID: "-target-cpu" "mips64" +// MIPS64EL-ANDROID: "-target-cpu" "mips64r2" // MIPS64EL-ANDROID: "-mfloat-abi" "hard" |