diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-04-12 17:43:53 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-04-12 17:43:53 +0000 |
commit | ef4b1757bf80e1bc38f2fa724da04eac52b5f071 (patch) | |
tree | 3dc45c6a7d8cf8adb7c30871b7cce253d01530a7 | |
parent | 0b5e7fbb94071e83a527e6759154d9512620f0ce (diff) |
OS dependent code removed.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68904 91177308-0d34-0410-b5e6-96231b3b80d8
-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; } } |