mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 14:28:54 -04:00

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
13 lines
316 B
C
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);
|
|
}
|