diff options
-rw-r--r-- | test/CodeGenObjC/synchronized.m | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/CodeGenObjC/synchronized.m b/test/CodeGenObjC/synchronized.m index 287f89e6c4..b398ca6c0a 100644 --- a/test/CodeGenObjC/synchronized.m +++ b/test/CodeGenObjC/synchronized.m @@ -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; } } |