summaryrefslogtreecommitdiff
path: root/test/COFF/dllexport-mingw.s
diff options
context:
space:
mode:
Diffstat (limited to 'test/COFF/dllexport-mingw.s')
-rw-r--r--test/COFF/dllexport-mingw.s24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/COFF/dllexport-mingw.s b/test/COFF/dllexport-mingw.s
deleted file mode 100644
index a96003b5ed225..0000000000000
--- a/test/COFF/dllexport-mingw.s
+++ /dev/null
@@ -1,24 +0,0 @@
-# REQUIRES: x86
-
-# RUN: llvm-mc -triple=i686-windows-gnu %s -filetype=obj -o %t.obj
-
-# RUN: lld-link -lldmingw -dll -out:%t.dll -entry:main %t.obj -implib:%t.lib
-# RUN: llvm-readobj %t.lib | FileCheck %s
-
-# CHECK: Symbol: __imp___underscoredFunc
-# CHECK: Symbol: __underscoredFunc
-# CHECK: Symbol: __imp__func
-# CHECK: Symbol: _func
-
-.global _main
-.global _func
-.global __underscoredFunc
-.text
-_main:
- ret
-_func:
- ret
-__underscoredFunc:
- ret
-.section .drectve
-.ascii "-export:func -export:_underscoredFunc"