r235756 - [opaque pointer type] Update test cases now that the type for an invoke is just a function type, not a pointer-to-function type

David Blaikie dblaikie at gmail.com
Fri Apr 24 12:33:25 PDT 2015


Author: dblaikie
Date: Fri Apr 24 14:33:25 2015
New Revision: 235756

URL: http://llvm.org/viewvc/llvm-project?rev=235756&view=rev
Log:
[opaque pointer type] Update test cases now that the type for an invoke is just a function type, not a pointer-to-function type

Modified:
    cfe/trunk/test/CodeGenObjC/arc-no-arc-exceptions.m

Modified: cfe/trunk/test/CodeGenObjC/arc-no-arc-exceptions.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc-no-arc-exceptions.m?rev=235756&r1=235755&r2=235756&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenObjC/arc-no-arc-exceptions.m (original)
+++ cfe/trunk/test/CodeGenObjC/arc-no-arc-exceptions.m Fri Apr 24 14:33:25 2015
@@ -34,7 +34,7 @@ void test1(id x) {
 void NSLog(id, ...);
 
 // CHECK-LABEL: define void @test2(
-// CHECK: invoke void (i8*, ...)* @NSLog(i8* bitcast (%struct.NSConstantString* @_unnamed_cfstring_ to i8*), i32* %{{.*}})
+// CHECK: invoke void (i8*, ...) @NSLog(i8* bitcast (%struct.NSConstantString* @_unnamed_cfstring_ to i8*), i32* %{{.*}})
 // CHECK:   to label %{{.*}} unwind label %{{.*}}, !clang.arc.no_objc_arc_exceptions !
 // NO-METADATA-LABEL: define void @test2(
 // NO-METADATA-NOT: !clang.arc.no_objc_arc_exceptions





More information about the cfe-commits mailing list