teak-llvm/clang/test/CodeGen/2005-02-27-MarkGlobalConstant.c
Eric Christopher b58b3e879d Make constant aggregate constant initializers private linkage.
After talking with John making this the case for all of these is
the right way to go.

Fixes rdar://9804564 and PR10414

llvm-svn: 138418
2011-08-24 00:33:55 +00:00

13 lines
316 B
C

// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
// PR10414
// The synthetic global made by the CFE for big initializer should be marked
// constant.
void bar();
void foo() {
// CHECK: private unnamed_addr constant
char Blah[] = "asdlfkajsdlfkajsd;lfkajds;lfkjasd;flkajsd;lkfja;sdlkfjasd";
bar(Blah);
}