diff options
author | Steve Naroff <snaroff@apple.com> | 2009-04-01 21:27:56 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2009-04-01 21:27:56 +0000 |
commit | 0f55fd9f33027a0f931ba2ad91688c532493ee59 (patch) | |
tree | cfac2a876c5a8043b0f50a23f008244a7cb6c4e3 | |
parent | e2ff483afd99b74eff8ee63796f5290a01774c58 (diff) | |
download | bcm5719-llvm-0f55fd9f33027a0f931ba2ad91688c532493ee59.tar.gz bcm5719-llvm-0f55fd9f33027a0f931ba2ad91688c532493ee59.zip |
Update test case and comment.
llvm-svn: 68247
-rw-r--r-- | clang/test/SemaObjC/ucn-objc-string.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/SemaObjC/ucn-objc-string.m b/clang/test/SemaObjC/ucn-objc-string.m index 918fbc2620d..5b611f6005f 100644 --- a/clang/test/SemaObjC/ucn-objc-string.m +++ b/clang/test/SemaObjC/ucn-objc-string.m @@ -5,9 +5,9 @@ extern void NSLog(NSString *format, ...) __attribute__((format(__NSString__, 1, int main() { NSLog(@"Hi…"); NSLog(@"Exposé"); - // FIXME: the following 2 are still not working (will investigate). + NSLog(@"\U00010400\U0001D12B"); + // FIXME: the following is still not working (will investigate). //NSLog(@"hello \u2192 \u2603 \u2190 world"); - //NSLog(@"\U00010400\U0001D12B"); return 0; } |