From: Simon Atanasyan Date: Mon, 30 Jun 2014 08:10:01 +0000 (+0000) Subject: [Driver][Mips] Fix test cases - make ABI name and target triple consistent. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b1dc4acb2bb3132b440befd5d8f4f9251d960c7;p=clang [Driver][Mips] Fix test cases - make ABI name and target triple consistent. No functional changes. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@212023 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/freebsd-mips-as.c b/test/Driver/freebsd-mips-as.c index 12b98764a8..da2d1200c4 100644 --- a/test/Driver/freebsd-mips-as.c +++ b/test/Driver/freebsd-mips-as.c @@ -80,12 +80,12 @@ // RUN: | FileCheck -check-prefix=MIPS-ALIAS-32R2 %s // MIPS-ALIAS-32R2: as{{(.exe)?}}" "-march" "mips32r2" "-mabi" "32" "-EB" // -// RUN: %clang -target mips-unknown-freebsd -mips64 -### \ +// RUN: %clang -target mips64-unknown-freebsd -mips64 -### \ // RUN: -no-integrated-as -c %s 2>&1 \ // RUN: | FileCheck -check-prefix=MIPS-ALIAS-64 %s // MIPS-ALIAS-64: as{{(.exe)?}}" "-march" "mips64" "-mabi" "64" "-EB" // -// RUN: %clang -target mips-unknown-freebsd -mips64r2 -### \ +// RUN: %clang -target mips64-unknown-freebsd -mips64r2 -### \ // RUN: -no-integrated-as -c %s 2>&1 \ // RUN: | FileCheck -check-prefix=MIPS-ALIAS-64R2 %s // MIPS-ALIAS-64R2: as{{(.exe)?}}" "-march" "mips64r2" "-mabi" "64" "-EB" diff --git a/test/Driver/mips-as.c b/test/Driver/mips-as.c index c825ee78b7..3b544d3874 100644 --- a/test/Driver/mips-as.c +++ b/test/Driver/mips-as.c @@ -62,12 +62,12 @@ // RUN: | FileCheck -check-prefix=MIPS-ALIAS-32R2 %s // MIPS-ALIAS-32R2: as{{(.exe)?}}" "-march" "mips32r2" "-mabi" "32" "-EB" // -// RUN: %clang -target mips-linux-gnu -mips64 -### \ +// RUN: %clang -target mips64-linux-gnu -mips64 -### \ // RUN: -no-integrated-as -c %s 2>&1 \ // RUN: | FileCheck -check-prefix=MIPS-ALIAS-64 %s // MIPS-ALIAS-64: as{{(.exe)?}}" "-march" "mips64" "-mabi" "64" "-EB" // -// RUN: %clang -target mips-linux-gnu -mips64r2 -### \ +// RUN: %clang -target mips64-linux-gnu -mips64r2 -### \ // RUN: -no-integrated-as -c %s 2>&1 \ // RUN: | FileCheck -check-prefix=MIPS-ALIAS-64R2 %s // MIPS-ALIAS-64R2: as{{(.exe)?}}" "-march" "mips64r2" "-mabi" "64" "-EB"