mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 16:56: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
12 lines
367 B
C++
12 lines
367 B
C++
// RUN: %clang_cc1 %s -emit-llvm -triple %itanium_abi_triple -o - -O2 | opt - -S -globalopt -o - | FileCheck %s
|
|
|
|
struct B;
|
|
extern B x;
|
|
char y;
|
|
typedef __typeof(sizeof(int)) size_t;
|
|
struct A { int a; A() { y = ((size_t)this - (size_t)&x) / sizeof(void*); } };
|
|
struct B : virtual A { void* x; };
|
|
B x;
|
|
|
|
// CHECK: @y = {{(dso_local )?}}local_unnamed_addr global i8 2
|