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 | faa435a326a694e0517d035376e616ff82655fe5 (patch) | |
tree | 132254bad297f6a922630cca358baf38ef198709 | |
parent | b59212a6e494d2c364b54462f545833902c29158 (diff) |
Update test case and comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68247 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/SemaObjC/ucn-objc-string.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SemaObjC/ucn-objc-string.m b/test/SemaObjC/ucn-objc-string.m index 918fbc2620..5b611f6005 100644 --- a/test/SemaObjC/ucn-objc-string.m +++ b/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; } |