mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 17:16:04 +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
11 lines
527 B
C++
11 lines
527 B
C++
// Test this without pch.
|
|
// RUN: %clang_cc1 -include %S/cxx-required-decls.h %s -triple %itanium_abi_triple -emit-llvm -o - | FileCheck %s
|
|
|
|
// Test with pch.
|
|
// RUN: %clang_cc1 -x c++-header -triple %itanium_abi_triple -emit-pch -o %t %S/cxx-required-decls.h
|
|
// RUN: %clang_cc1 -include-pch %t %s -triple %itanium_abi_triple -emit-llvm -o - | FileCheck %s
|
|
|
|
// CHECK: @_ZL5globS = internal global %struct.S zeroinitializer
|
|
// CHECK: @_ZL3bar = internal global i32 0, align 4
|
|
// CHECK: @glob_var = {{(dso_local )?}}global i32 0
|