repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
(Hopefully) unbreak Apple-style builds.
[llvm/msp430.git]
/
test
/
FrontendObjC
/
2008-11-24-ConstCFStrings.m
blob
976adc47f12ab8ef6131603fc5c87928e33ab961
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
}