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