mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
06c22ed109
llvm-svn: 95962
18 lines
337 B
Objective-C
18 lines
337 B
Objective-C
// RUN: %llvmgcc -x objective-c -fwritable-strings -S %s -o - | FileCheck %s
|
|
// CHECK: @.str = private constant
|
|
// CHECK: @.str1 = internal global
|
|
|
|
// rdar://7634471
|
|
|
|
@class NSString;
|
|
|
|
@interface A
|
|
- (void)foo:(NSString*)msg;
|
|
- (void)bar:(const char*)msg;
|
|
@end
|
|
|
|
void func(A *a) {
|
|
[a foo:@"Hello world!"];
|
|
[a bar:"Goodbye world!"];
|
|
}
|