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/Preprocessor/init.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/Preprocessor/init.c')
-rw-r--r-- | clang/test/Preprocessor/init.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/clang/test/Preprocessor/init.c b/clang/test/Preprocessor/init.c index 33b3b7cf372..83ced6078a4 100644 --- a/clang/test/Preprocessor/init.c +++ b/clang/test/Preprocessor/init.c @@ -868,8 +868,8 @@ // MIPS32BE:#define _ABIO32 1 // MIPS32BE-NOT:#define _LP64 // MIPS32BE:#define _MIPSEB 1 -// MIPS32BE:#define _MIPS_ARCH "mips32" -// MIPS32BE:#define _MIPS_ARCH_MIPS32 1 +// MIPS32BE:#define _MIPS_ARCH "mips32r2" +// MIPS32BE:#define _MIPS_ARCH_MIPS32R2 1 // MIPS32BE:#define _MIPS_FPSET 16 // MIPS32BE:#define _MIPS_SIM _ABIO32 // MIPS32BE:#define _MIPS_SZINT 32 @@ -987,8 +987,8 @@ // MIPS32EL:#define _ABIO32 1 // MIPS32EL-NOT:#define _LP64 // MIPS32EL:#define _MIPSEL 1 -// MIPS32EL:#define _MIPS_ARCH "mips32" -// MIPS32EL:#define _MIPS_ARCH_MIPS32 1 +// MIPS32EL:#define _MIPS_ARCH "mips32r2" +// MIPS32EL:#define _MIPS_ARCH_MIPS32R2 1 // MIPS32EL:#define _MIPS_FPSET 16 // MIPS32EL:#define _MIPS_SIM _ABIO32 // MIPS32EL:#define _MIPS_SZINT 32 @@ -1103,8 +1103,8 @@ // MIPS64BE:#define _ABI64 3 // MIPS64BE:#define _LP64 1 // MIPS64BE:#define _MIPSEB 1 -// MIPS64BE:#define _MIPS_ARCH "mips64" -// MIPS64BE:#define _MIPS_ARCH_MIPS64 1 +// MIPS64BE:#define _MIPS_ARCH "mips64r2" +// MIPS64BE:#define _MIPS_ARCH_MIPS64R2 1 // MIPS64BE:#define _MIPS_FPSET 32 // MIPS64BE:#define _MIPS_SIM _ABI64 // MIPS64BE:#define _MIPS_SZINT 32 @@ -1221,8 +1221,8 @@ // MIPS64EL:#define _ABI64 3 // MIPS64EL:#define _LP64 1 // MIPS64EL:#define _MIPSEL 1 -// MIPS64EL:#define _MIPS_ARCH "mips64" -// MIPS64EL:#define _MIPS_ARCH_MIPS64 1 +// MIPS64EL:#define _MIPS_ARCH "mips64r2" +// MIPS64EL:#define _MIPS_ARCH_MIPS64R2 1 // MIPS64EL:#define _MIPS_FPSET 32 // MIPS64EL:#define _MIPS_SIM _ABI64 // MIPS64EL:#define _MIPS_SZINT 32 @@ -1339,8 +1339,8 @@ // RUN: < /dev/null \ // RUN: | FileCheck -check-prefix MIPS-ARCH-DEF32 %s // -// MIPS-ARCH-DEF32:#define _MIPS_ARCH "mips32" -// MIPS-ARCH-DEF32:#define _MIPS_ARCH_MIPS32 1 +// MIPS-ARCH-DEF32:#define _MIPS_ARCH "mips32r2" +// MIPS-ARCH-DEF32:#define _MIPS_ARCH_MIPS32R2 1 // // RUN: %clang_cc1 -E -dM -ffreestanding -triple=mips-none-nones \ // RUN: -target-cpu mips32 < /dev/null \ @@ -1360,8 +1360,8 @@ // RUN: < /dev/null \ // RUN: | FileCheck -check-prefix MIPS-ARCH-DEF64 %s // -// MIPS-ARCH-DEF64:#define _MIPS_ARCH "mips64" -// MIPS-ARCH-DEF64:#define _MIPS_ARCH_MIPS64 1 +// MIPS-ARCH-DEF64:#define _MIPS_ARCH "mips64r2" +// MIPS-ARCH-DEF64:#define _MIPS_ARCH_MIPS64R2 1 // // RUN: %clang_cc1 -E -dM -ffreestanding -triple=mips64-none-none \ // RUN: -target-cpu mips64 < /dev/null \ |