mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 10:36:07 +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
422 B
C
11 lines
422 B
C
// Test this without pch.
|
|
// RUN: not %clang_cc1 -include %S/pragma-weak.h %s -verify -emit-llvm -o - | FileCheck %s
|
|
|
|
// Test with pch.
|
|
// RUN: %clang_cc1 -x c-header -emit-pch -o %t %S/pragma-weak.h
|
|
// RUN: not %clang_cc1 -include-pch %t %s -verify -emit-llvm -o - | FileCheck %s
|
|
|
|
// CHECK: @weakvar = weak {{(dso_local )?}}global i32 0
|
|
int weakvar;
|
|
// expected-warning {{weak identifier 'undeclaredvar' never declared}}
|