aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/stdcall.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/stdcall.ll')
-rw-r--r--test/CodeGen/X86/stdcall.ll24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/CodeGen/X86/stdcall.ll b/test/CodeGen/X86/stdcall.ll
deleted file mode 100644
index 3cefe14fe0d5..000000000000
--- a/test/CodeGen/X86/stdcall.ll
+++ /dev/null
@@ -1,24 +0,0 @@
-; RUN: llc -mtriple="i386-pc-mingw32" < %s | FileCheck %s
-; PR5851
-
-%0 = type { void (...)* }
-
-define internal x86_stdcallcc void @MyFunc() nounwind {
-entry:
-; CHECK: MyFunc@0:
-; CHECK: retl
- ret void
-}
-
-; PR14410
-define x86_stdcallcc i32 @"\01DoNotMangle"(i32 %a) {
-; CHECK: DoNotMangle:
-; CHECK: retl $4
-entry:
- ret i32 %a
-}
-
-@B = global %0 { void (...)* bitcast (void ()* @MyFunc to void (...)*) }, align 4
-; CHECK: _B:
-; CHECK: .long _MyFunc@0
-