diff options
author | Mike Stump <mrs@apple.com> | 2009-11-16 18:06:39 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-11-16 18:06:39 +0000 |
commit | 2a70e94c543338059432fc38b801a56c60f0e0d7 (patch) | |
tree | 657a43d53b60592d4a74cc98f38aa0755358eb0f | |
parent | fd015353a3c4f528216276f25df5b4d464d7a0cd (diff) |
Fix spelling for target triplet.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@88928 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenCXX/delete-two-arg.cpp | 2 | ||||
-rw-r--r-- | test/CodeGenCXX/explicit-instantiation.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGenCXX/delete-two-arg.cpp b/test/CodeGenCXX/delete-two-arg.cpp index b8fe4223e7..a5b18ba06f 100644 --- a/test/CodeGenCXX/delete-two-arg.cpp +++ b/test/CodeGenCXX/delete-two-arg.cpp @@ -1,4 +1,4 @@ -// RUN: clang-cc -triple i686-pc-linue-gnu %s -o - -emit-llvm -verify | FileCheck %s +// RUN: clang-cc -triple i686-pc-linux-gnu %s -o - -emit-llvm -verify | FileCheck %s struct A { void operator delete(void*,__typeof(sizeof(int))); int x; }; void a(A* x) { delete x; } diff --git a/test/CodeGenCXX/explicit-instantiation.cpp b/test/CodeGenCXX/explicit-instantiation.cpp index b47b375862..b33ba85cf6 100644 --- a/test/CodeGenCXX/explicit-instantiation.cpp +++ b/test/CodeGenCXX/explicit-instantiation.cpp @@ -1,4 +1,4 @@ -// RUN: clang-cc -emit-llvm -triple i686-pc-linue-gnu -o %t %s +// RUN: clang-cc -emit-llvm -triple i686-pc-linux-gnu -o %t %s // RUN: grep "define i32 @_ZNK4plusIillEclERKiRKl" %t | count 1 template<typename T, typename U, typename Result> |