From: Simon Atanasyan Date: Sun, 29 Jun 2014 16:51:16 +0000 (+0000) Subject: [Mips] Fix MIPS ABI name in the test. The name "64" is accepted by both gcc X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91d23a64771ae5152cf5fc5064dab13e9606de08;p=clang [Mips] Fix MIPS ABI name in the test. The name "64" is accepted by both gcc and Clang drivers but internally LLVM/Clang use the name "n64". git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211999 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/mips-size_t-ptrdiff_t.cpp b/test/CodeGenCXX/mips-size_t-ptrdiff_t.cpp index 7c94ea0d54..92e704a0a3 100644 --- a/test/CodeGenCXX/mips-size_t-ptrdiff_t.cpp +++ b/test/CodeGenCXX/mips-size_t-ptrdiff_t.cpp @@ -1,6 +1,6 @@ // RUN: %clang_cc1 -x c++ -emit-llvm -triple=mips-unknown-linux-gnu < %s | FileCheck --check-prefix=O32 %s // RUN: %clang_cc1 -x c++ -emit-llvm -triple=mips64-unknown-linux-gnu -target-abi n32 < %s | FileCheck --check-prefix=N32 %s -// RUN: %clang_cc1 -x c++ -emit-llvm -triple=mips64-unknown-linux-gnu -target-abi 64 < %s | FileCheck --check-prefix=N64 %s +// RUN: %clang_cc1 -x c++ -emit-llvm -triple=mips64-unknown-linux-gnu -target-abi n64 < %s | FileCheck --check-prefix=N64 %s // Test that the size_t is correct for the ABI. It's not sufficient to be the // correct size, it must be the same type for correct name mangling.