mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 18:26:06 +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
26 lines
722 B
C
26 lines
722 B
C
// RUN: %clang_cc1 -triple i386-pc-win32 -emit-llvm -fms-compatibility -o - < %s | FileCheck %s
|
|
|
|
char __declspec(align(8192)) x;
|
|
// CHECK-DAG: @x = dso_local global i8 0, align 8192
|
|
|
|
typedef char __declspec(align(8192)) T;
|
|
T y;
|
|
// CHECK-DAG: @y = dso_local global i8 0, align 8192
|
|
|
|
T __declspec(align(8192)) z;
|
|
// CHECK-DAG: @z = dso_local global i8 0, align 8192
|
|
|
|
int __declspec(align(16)) redef;
|
|
int __declspec(align(32)) redef = 8;
|
|
// CHECK-DAG: @redef = dso_local global i32 8, align 32
|
|
|
|
struct __declspec(align(64)) S {
|
|
char fd;
|
|
} s;
|
|
// CHECK-DAG: @s = dso_local global %struct.S zeroinitializer, align 64
|
|
|
|
struct Wrap {
|
|
struct S x;
|
|
} w;
|
|
// CHECK-DAG: @w = dso_local global %struct.Wrap zeroinitializer, align 64
|