Fix spelling for target triplet.

llvm-svn: 88928
This commit is contained in:
Mike Stump 2009-11-16 18:06:39 +00:00
parent 699f5b9a0a
commit 6fa768df29
2 changed files with 2 additions and 2 deletions

View 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; }

View 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>