aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/fastcall-correct-mangling.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/fastcall-correct-mangling.ll')
-rw-r--r--test/CodeGen/X86/fastcall-correct-mangling.ll7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/CodeGen/X86/fastcall-correct-mangling.ll b/test/CodeGen/X86/fastcall-correct-mangling.ll
index c513666486..d2db279551 100644
--- a/test/CodeGen/X86/fastcall-correct-mangling.ll
+++ b/test/CodeGen/X86/fastcall-correct-mangling.ll
@@ -1,8 +1,9 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mtriple=mingw32 | \
+; RUN: llvm-as < %s | llc -march=x86 -mtriple=mingw32 | \
; RUN: grep {@12}
; Check that a fastcall function gets correct mangling
-x86_fastcallcc void %func(long %X, ubyte %Y, ubyte %G, ushort %Z) {
- ret void
+define x86_fastcallcc void @func(i64 %X, i8 %Y, i8 %G, i16 %Z) {
+ ret void
}
+