]> granicus.if.org Git - clang/commitdiff
NFC: Unforget a colon in a few CHECK: directives.
authorArtem Dergachev <artem.dergachev@gmail.com>
Fri, 12 Jul 2019 02:16:56 +0000 (02:16 +0000)
committerArtem Dergachev <artem.dergachev@gmail.com>
Fri, 12 Jul 2019 02:16:56 +0000 (02:16 +0000)
Differential Revision: https://reviews.llvm.org/D64526

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@365863 91177308-0d34-0410-b5e6-96231b3b80d8

test/Analysis/cfg-rich-constructors.cpp
test/CodeGenCXX/noescape.cpp
test/CodeGenObjC/externally-retained.m

index 0125c9bf52325480dcdb1cb5dcc5f169ec22c98f..cb1ed8eb6b2b3614996792057af2c1458320e99a 100644 (file)
@@ -459,7 +459,7 @@ namespace temporary_object_expr_without_dtors {
 // TODO: Should provide construction context for the constructor,
 // even if there is no specific trigger statement here.
 // CHECK: void simpleTemporary()
-// CHECK           1: C() (CXXConstructExpr, class C)
+// CHECK:          1: C() (CXXConstructExpr, class C)
 void simpleTemporary() {
   C();
 }
index 40bc839788ac8583e6a4dc54da8d4364ce10c9a7..dbd97daa5e064c034b8fa41b6557f304b7532387 100644 (file)
@@ -45,7 +45,7 @@ void *operator new(std::size_t, void * __attribute__((noescape)) p) {
 }
 
 // CHECK-LABEL: define i8* @_Z5test1Pv(
-// CHECK : %call = call {{.*}} @_ZnwmPv({{.*}}, {{.*}} nocapture {{.*}})
+// CHECK: %call = call {{.*}} @_ZnwmPv({{.*}}, {{.*}} nocapture {{.*}})
 void *test1(void *p0) {
   return ::operator new(16, p0);
 }
index 0b4d0d648b44017c74f22fb1e429bb10713a457f..f68696879768fc58367c64a843027693323b96bd 100644 (file)
@@ -22,7 +22,7 @@ extern "C" void block_param();
 void param(ObjTy *p) EXT_RET {
   // CHECK-LABEL: define void @param
   // CHECK-NOT: llvm.objc.
-  // CHECK ret
+  // CHECK: ret
 }
 
 void local() {