From 629bc30340e68722b68480129aa38d6405ca8134 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Thu, 4 Sep 2008 01:04:15 +0000 Subject: Remove code that pad number of bytes to pop for X86_FastCall CC. The code doesn't do the "aligning" for Cygwin, Mingw, and Windows. But aligning it on Darwin and Linux breaks gcc compatibility. That ruled out all the platforms we support! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55756 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/fast-cc-callee-pops.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/CodeGen/X86/fast-cc-callee-pops.ll b/test/CodeGen/X86/fast-cc-callee-pops.ll index 9b03634..941f708 100644 --- a/test/CodeGen/X86/fast-cc-callee-pops.ll +++ b/test/CodeGen/X86/fast-cc-callee-pops.ll @@ -3,6 +3,6 @@ ; Check that a fastcc function pops its stack variables before returning. -define x86_fastcallcc void @func(i64 %X, i64 %Y, float %G, double %Z) { +define x86_fastcallcc void @func(i64 %X, i64 %Y, float %G, double %Z) nounwind { ret void } -- cgit v1.1