1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-17 23:31:05 +00:00
llvm-6502/test/FrontendC/2005-02-27-MarkGlobalConstant.c

11 lines
281 B
C
Raw Normal View History

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