Index: test/AST/ast-dump-attr.cpp =================================================================== --- test/AST/ast-dump-attr.cpp +++ test/AST/ast-dump-attr.cpp @@ -197,7 +197,7 @@ [[gsl::suppress("on-decl")]] void TestSuppressFunction(); // CHECK: FunctionDecl{{.*}} TestSuppressFunction - // CHECK-NEXT SuppressAttr{{.*}} on-decl + // CHECK-NEXT: SuppressAttr{{.*}} on-decl void f() { int *i; Index: test/CodeGenCXX/arm-swiftcall.cpp =================================================================== --- test/CodeGenCXX/arm-swiftcall.cpp +++ test/CodeGenCXX/arm-swiftcall.cpp @@ -120,6 +120,6 @@ class struct_trivial { int x; }; -// CHECK-LABEL define void @test_struct_trivial(i32{{( %.*)?}}) +// CHECK-LABEL: define swiftcc void @test_struct_trivial(i32{{( %.*)?}}) extern "C" SWIFTCALL void test_struct_trivial(struct_trivial triv) {} Index: test/CodeGenCXX/cxx1z-init-statement.cpp =================================================================== --- test/CodeGenCXX/cxx1z-init-statement.cpp +++ test/CodeGenCXX/cxx1z-init-statement.cpp @@ -5,7 +5,7 @@ // CHECK: %[[A:.*]] = alloca i32, align 4 // CHECK-NEXT: store i32 5, i32* %[[A]], align 4 // CHECK-NEXT: %[[B:.*]] = load i32, i32* %[[A]], align 4 - // CHECK-NEXT %[[C:.*]] = icmp slt i32 %[[B]], 8 + // CHECK-NEXT: %[[C:.*]] = icmp slt i32 %[[B]], 8 if (int a = 5; a < 8) ; } Index: test/CodeGenCXX/cxx2a-compare.cpp =================================================================== --- test/CodeGenCXX/cxx2a-compare.cpp +++ test/CodeGenCXX/cxx2a-compare.cpp @@ -80,7 +80,7 @@ // CHECK: %cmp.ptr.null = icmp eq [[TY]] %lhs.memptr.ptr, 0 // CHECK: %cmp.adj = icmp eq [[TY]] %lhs.memptr.adj, %rhs.memptr.adj // CHECK: %[[OR:.*]] = or i1 - // CHECK-SAME %cmp.adj + // CHECK-SAME: %cmp.adj // CHECK: %memptr.eq = and i1 %cmp.ptr, %[[OR]] // CHECK: %sel.eq = select i1 %memptr.eq, i8 [[EQ]], i8 [[NE]] // CHECK: %__value_ = getelementptr inbounds %[[SE]], %[[SE]]* %[[DEST]] Index: test/CodeGenCXX/debug-info-inheriting-constructor.cpp =================================================================== --- test/CodeGenCXX/debug-info-inheriting-constructor.cpp +++ test/CodeGenCXX/debug-info-inheriting-constructor.cpp @@ -9,9 +9,9 @@ A::A(int i, ...) {} // CHECK: define void @{{.*}}foo -// CHECK-NOT ret void +// CHECK-NOT: ret void // CHECK: call void @llvm.dbg.declare -// CHECK-NOT ret void +// CHECK-NOT: ret void // CHECK: call void @llvm.dbg.declare(metadata %{{.*}}** %{{[^,]+}}, // CHECK-SAME: metadata ![[THIS:[0-9]+]], metadata !DIExpression()), !dbg ![[LOC:[0-9]+]] // CHECK: ret void, !dbg ![[NOINL:[0-9]+]] Index: test/CodeGenCXX/vtable-layout.cpp =================================================================== --- test/CodeGenCXX/vtable-layout.cpp +++ test/CodeGenCXX/vtable-layout.cpp @@ -1412,7 +1412,7 @@ // CHECK-35-NEXT: 13 | void Test28::B::b() // // CHECK-35: VTable indices for 'Test28::E' (1 entries). -// CHECK-35-NEXT : 0 | void Test28::E::e() +// CHECK-35-NEXT: 0 | void Test28::E::e() // CHECK-35: Construction vtable for ('Test28::D', 0) in 'Test28::E' (13 entries). // CHECK-35-NEXT: 0 | vbase_offset (8) Index: test/CodeGenObjC/gnu-init.m =================================================================== --- test/CodeGenObjC/gnu-init.m +++ test/CodeGenObjC/gnu-init.m @@ -14,7 +14,7 @@ // Check that we get a class ref to the defined class. // CHECK-NEW: @._OBJC_INIT_CLASS_X = global -// CHECK-NEW-SAME* @._OBJC_CLASS_X, section "__objc_classes" +// CHECK-NEW-SAME: @._OBJC_CLASS_X, section "__objc_classes" // Check that we emit the section start and end symbols as hidden globals. // CHECK-NEW: @__start___objc_selectors = external hidden global i8* Index: test/CodeGenObjC/os_log.m =================================================================== --- test/CodeGenObjC/os_log.m +++ test/CodeGenObjC/os_log.m @@ -50,7 +50,7 @@ // CHECK-O0: %[[V4:.*]] = ptrtoint %[[TY0]]* %[[V3]] to i64 // CHECK-O0: call void @__os_log_helper_1_2_1_8_64(i8* %[[V0]], i64 %[[V4]]) // CHECK-O0: %[[V5:.*]] = bitcast %[[TY0]]* %[[V3]] to i8* - // CHECK-O0-NOT call void (...) @llvm.objc.clang.arc.use({{.*}} + // CHECK-O0-NOT: call void (...) @llvm.objc.clang.arc.use({{.*}} // CHECK-O0: call void @llvm.objc.release(i8* %[[V5]]) // CHECK-O0: ret i8* %[[V0]] }