mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 22:56:05 +00:00

The tests that failed on a windows host have been fixed. Original message: Start setting dso_local for COFF. With this there are still some GVs where we don't set dso_local because setGVProperties is never called. I intend to fix that in followup commits. This is just the bare minimum to teach shouldAssumeDSOLocal what it should do for COFF. llvm-svn: 325940
8 lines
218 B
C
8 lines
218 B
C
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
|
|
|
|
// CHECK: @a = external {{(dso_local )?}}constan
|
|
extern const int a[]; // 'a' should be marked constant even though it's external!
|
|
int foo () {
|
|
return a[0];
|
|
}
|