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
10 lines
428 B
Common Lisp
10 lines
428 B
Common Lisp
// RUN: %clang_cc1 %s -cl-opt-disable -emit-llvm -o - -ffake-address-space-map | FileCheck %s
|
|
|
|
__constant char * __constant x = "hello world";
|
|
__constant char * __constant y = "hello world";
|
|
|
|
// CHECK: unnamed_addr addrspace(2) constant
|
|
// CHECK-NOT: addrspace(2) unnamed_addr constant
|
|
// CHECK: @x = {{(dso_local )?}}addrspace(2) constant i8 addrspace(2)*
|
|
// CHECK: @y = {{(dso_local )?}}addrspace(2) constant i8 addrspace(2)*
|