]> granicus.if.org Git - clang/commitdiff
Remove trailing whitespace to make test compatible with typeless pointer migration
authorDavid Blaikie <dblaikie@gmail.com>
Sun, 15 Feb 2015 04:12:21 +0000 (04:12 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Sun, 15 Feb 2015 04:12:21 +0000 (04:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@229273 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenObjCXX/arc-pseudo-destructors.mm

index 0a69487b9e7cabfe22b0b73862551b3aac35f118..d21844addfa9c0098c3fb3691f4d20b710a6f186 100644 (file)
@@ -3,7 +3,7 @@
 // CHECK-LABEL: define void @_Z28test_objc_object_pseudo_dtorPU8__strongP11objc_objectPU6__weakS0_
 void test_objc_object_pseudo_dtor(__strong id *ptr, __weak id *wptr) {
   // CHECK: load i8***
-  // CHECK-NEXT: load i8** 
+  // CHECK-NEXT: load i8**
   // CHECK-NEXT: call void @objc_release
   ptr->~id();
 
@@ -11,7 +11,7 @@ void test_objc_object_pseudo_dtor(__strong id *ptr, __weak id *wptr) {
   wptr->~id();
 
   // CHECK: load i8***
-  // CHECK-NEXT: load i8** 
+  // CHECK-NEXT: load i8**
   // CHECK-NEXT: call void @objc_release
   (*ptr).~id();