mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Teach the internalize pass to skip dllexported symbols because they could be
referenced in a way that even the linker does not see. Differential Revision: http://llvm-reviews.chandlerc.com/D2280 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196300 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -48,3 +48,12 @@ define void @foo() {
|
||||
define available_externally void @bar() {
|
||||
ret void
|
||||
}
|
||||
|
||||
; ALL: define dllexport void @export_foo() {
|
||||
; FOO_AND_J: define dllexport void @export_foo() {
|
||||
; FOO_AND_BAR: define dllexport void @export_foo() {
|
||||
; FOO_J_AND_BAR: define dllexport void @export_foo() {
|
||||
define dllexport void @export_foo() {
|
||||
ret void
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user