blob: ff245fcc7a5c1f8d1cba7f8c8615e213eb6796ab [file] [log] [blame]
Daniel Dunbar8e5c2b82009-03-31 23:42:16 +00001// RUN: clang-cc -triple i386-apple-darwin9 -emit-llvm %s -o %t &&
2
3// RUN: grep -F '@"\01LC" = internal constant [8 x i8] c"string0\00"' %t &&
4// RUN: grep -F '@"\01LC1" = internal constant [8 x i8] c"string1\00", section "__TEXT,__cstring,cstring_literals"' %t &&
Daniel Dunbara9668e02009-04-03 00:57:44 +00005// RUN: grep -F '@__utf16_string_ = internal global [35 x i8] c"h\00e\00l\00l\00o\00 \00\92! \00\03& \00\90! \00w\00o\00r\00l\00d\00\00", section "__TEXT,__ustring", align 2' %t &&
Daniel Dunbar8e5c2b82009-03-31 23:42:16 +00006// RUN: true
7
8const char *g0 = "string0";
9const void *g1 = __builtin___CFStringMakeConstantString("string1");
Daniel Dunbara9668e02009-04-03 00:57:44 +000010const void *g2 = __builtin___CFStringMakeConstantString("hello \u2192 \u2603 \u2190 world");