Testcase for constant CFStrings.

llvm-svn: 59992
This commit is contained in:
Bill Wendling 2008-11-24 23:28:09 +00:00
parent 6416a6b7a0
commit a307020800
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
// RUN: %llvmgcc -x objective-c -m64 -S %s -o - | grep {L_unnamed_cfstring_}
@class NSString;
@interface A
- (void)bork:(NSString*)msg;
@end
void func(A *a) {
[a bork:@"Hello world!"];
}