ARM: enable struct byval for AAPCS-VFP.

This change is to be enabled in clang.

rdar://9877866

llvm-svn: 161789
This commit is contained in:
Manman Ren 2012-08-13 21:22:50 +00:00
parent 49aeb5cc5d
commit d6c8270eaa
1 changed files with 3 additions and 0 deletions

View File

@ -160,6 +160,9 @@ def RetCC_ARM_AAPCS : CallingConv<[
//===----------------------------------------------------------------------===//
def CC_ARM_AAPCS_VFP : CallingConv<[
// Handles byval parameters.
CCIfByVal<CCPassByVal<4, 4>>,
// Handle all vector types as either f64 or v2f64.
CCIfType<[v1i64, v2i32, v4i16, v8i8, v2f32], CCBitConvertToType<f64>>,
CCIfType<[v2i64, v4i32, v8i16, v16i8, v4f32], CCBitConvertToType<v2f64>>,