[cfe-commits] r68904 - /cfe/trunk/test/CodeGenObjC/synchronized.m
Fariborz Jahanian
fjahanian at apple.com
Sun Apr 12 10:43:53 PDT 2009
Author: fjahanian
Date: Sun Apr 12 12:43:53 2009
New Revision: 68904
URL: http://llvm.org/viewvc/llvm-project?rev=68904&view=rev
Log:
OS dependent code removed.
Modified:
cfe/trunk/test/CodeGenObjC/synchronized.m
Modified: cfe/trunk/test/CodeGenObjC/synchronized.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/synchronized.m?rev=68904&r1=68903&r2=68904&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenObjC/synchronized.m (original)
+++ cfe/trunk/test/CodeGenObjC/synchronized.m Sun Apr 12 12:43:53 2009
@@ -2,8 +2,6 @@
// RUN: grep 'ret i32' %t | count 1 &&
// RUN: grep 'ret i32 1' %t | count 1
-#include <stdio.h>
-
@interface MyClass
{
}
@@ -16,7 +14,6 @@
{
@synchronized(self)
{
- NSLog(@"sync");
}
}
@@ -24,7 +21,6 @@
void foo(id a) {
@synchronized(a) {
- printf("Swimming? No.");
return;
}
}
More information about the cfe-commits
mailing list