zpu: managed to compile program that writes constant to global variable
[llvm/zpu.git] / test / FrontendObjC / 2010-02-11-fwritable-stringsBug.m
blob13e16312cf66d862e1ed885bbbedb722002d8dc3
1 // RUN: %llvmgcc -x objective-c -fwritable-strings -S %s -o - | FileCheck %s
2 // CHECK: @.str = private constant
3 // CHECK: @.str1 = internal global
5 // rdar://7634471
7 @class NSString;
9 @interface A
10 - (void)foo:(NSString*)msg;
11 - (void)bar:(const char*)msg;
12 @end
14 void func(A *a) {
15   [a foo:@"Hello world!"];
16   [a bar:"Goodbye world!"];