aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMCallingConv.td
diff options
context:
space:
mode:
authorStuart Hastings <stuart@apple.com>2011-04-20 16:47:52 +0000
committerStuart Hastings <stuart@apple.com>2011-04-20 16:47:52 +0000
commitc73158730d43e7c8bdef32b2107566a6e78a8538 (patch)
tree9bd9f10252c2a9512bf6c01dd4c6bb3c403934f5 /lib/Target/ARM/ARMCallingConv.td
parent88c924c67e894981e3e92ecd95e4d9b46ac92e65 (diff)
ARM byval support. Will be enabled by another patch to the FE. <rdar://problem/7662569>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129858 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMCallingConv.td')
-rw-r--r--lib/Target/ARM/ARMCallingConv.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMCallingConv.td b/lib/Target/ARM/ARMCallingConv.td
index 1e6b95e875..d2981c0af8 100644
--- a/lib/Target/ARM/ARMCallingConv.td
+++ b/lib/Target/ARM/ARMCallingConv.td
@@ -23,7 +23,7 @@ class CCIfAlign<string Align, CCAction A>:
def CC_ARM_APCS : CallingConv<[
// Handles byval parameters.
- CCIfByVal<CCPassByVal<8, 8>>,
+ CCIfByVal<CCPassByVal<4, 4>>,
CCIfType<[i8, i16], CCPromoteToType<i32>>,