]> granicus.if.org Git - clang/commitdiff
Fix spelling for target triplet.
authorMike Stump <mrs@apple.com>
Mon, 16 Nov 2009 18:06:39 +0000 (18:06 +0000)
committerMike Stump <mrs@apple.com>
Mon, 16 Nov 2009 18:06:39 +0000 (18:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@88928 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenCXX/delete-two-arg.cpp
test/CodeGenCXX/explicit-instantiation.cpp

index b8fe4223e70b5d41375482ae9b2cb0916ea42805..a5b18ba06fc358721c784ce83e552e831667dee2 100644 (file)
@@ -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; }
index b47b3758622dd0c6aa2b0d317480967d22e86b8e..b33ba85cf6606e2d43cc069d87810a4e2a7edaca 100644 (file)
@@ -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>