diff options
author | Simon Atanasyan <simon@atanasyan.com> | 2014-06-29 16:51:16 +0000 |
---|---|---|
committer | Simon Atanasyan <simon@atanasyan.com> | 2014-06-29 16:51:16 +0000 |
commit | f94e7d74f7c231151ab2c92882f585e625cd03f6 (patch) | |
tree | 0109f70b3d56e76a77c388909b7c16455917c5f8 /clang | |
parent | 557fb62e800631fe93137c42530a164cfebfab7c (diff) | |
download | bcm5719-llvm-f94e7d74f7c231151ab2c92882f585e625cd03f6.tar.gz bcm5719-llvm-f94e7d74f7c231151ab2c92882f585e625cd03f6.zip |
[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
Diffstat (limited to 'clang')
-rw-r--r-- | clang/test/CodeGenCXX/mips-size_t-ptrdiff_t.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/mips-size_t-ptrdiff_t.cpp b/clang/test/CodeGenCXX/mips-size_t-ptrdiff_t.cpp index 7c94ea0d54f..92e704a0a30 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. |