Make this test not depend on how the variable is named.
[oota-llvm.git] / test / FrontendObjC / 2008-11-24-ConstCFStrings.m
1 // RUN: %llvmgcc -x objective-c -m64 -S %s -o - | grep {L_unnamed_cfstring_}
2
3 @class NSString;
4
5 @interface A
6 - (void)bork:(NSString*)msg;
7 @end
8
9 void func(A *a) {
10   [a bork:@"Hello world!"];
11 }