From f94e7d74f7c231151ab2c92882f585e625cd03f6 Mon Sep 17 00:00:00 2001 From: Simon Atanasyan Date: Sun, 29 Jun 2014 16:51:16 +0000 Subject: [PATCH] [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". llvm-svn: 211999 --- clang/test/CodeGenCXX/mips-size_t-ptrdiff_t.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/CodeGenCXX/mips-size_t-ptrdiff_t.cpp b/clang/test/CodeGenCXX/mips-size_t-ptrdiff_t.cpp index 7c94ea0..92e704a 100644 --- a/clang/test/CodeGenCXX/mips-size_t-ptrdiff_t.cpp +++ b/clang/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. -- 2.7.4