[cfe-commits] r97762 - /cfe/trunk/test/Rewriter/rewrite-protocol-qualified.mm

Fariborz Jahanian fjahanian at apple.com
Thu Mar 4 15:13:29 PST 2010


Author: fjahanian
Date: Thu Mar  4 17:13:29 2010
New Revision: 97762

URL: http://llvm.org/viewvc/llvm-project?rev=97762&view=rev
Log:
Make rewritten source compiled with clang++.


Modified:
    cfe/trunk/test/Rewriter/rewrite-protocol-qualified.mm

Modified: cfe/trunk/test/Rewriter/rewrite-protocol-qualified.mm
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Rewriter/rewrite-protocol-qualified.mm?rev=97762&r1=97761&r2=97762&view=diff
==============================================================================
--- cfe/trunk/test/Rewriter/rewrite-protocol-qualified.mm (original)
+++ cfe/trunk/test/Rewriter/rewrite-protocol-qualified.mm Thu Mar  4 17:13:29 2010
@@ -1,5 +1,5 @@
-// RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc %s -o %t-rw.cpp
-// RUN: FileCheck -check-prefix LP --input-file=%t-rw.cpp %s
+// RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc %s -o %t-rw.cpp
+// RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -D"id=void*" -D"__declspec(X)=" %t-rw.cpp
 // radar 7589414
 
 @protocol NSPortDelegate;
@@ -30,12 +30,3 @@
         id a;
         id b = bar((id <Proto>)a);
 }
-
-// CHECK-LP: NSConnection /*<NSPortDelegate>*/ *conn = 0; 
-
-// CHECK-LP: id /*<NSPortDelegate>*/ *idc = 0; 
-
-// CHECK-LP: func(id/*<Proto1, Proto2>*/ inProxy);
-
-// CHECK-LP: bar((id /*<Proto>*/)a);
-





More information about the cfe-commits mailing list