[llvm-branch-commits] [llvm-branch] r223026 - Merged from r220564:

Daniel Sanders daniel.sanders at imgtec.com
Mon Dec 1 06:28:19 PST 2014


Author: dsanders
Date: Mon Dec  1 08:28:19 2014
New Revision: 223026

URL: http://llvm.org/viewvc/llvm-project?rev=223026&view=rev
Log:
Merged from r220564:

[mips] Fix >80-column line


Modified:
    llvm/branches/release_35/lib/Target/Mips/MipsCallingConv.td

Modified: llvm/branches/release_35/lib/Target/Mips/MipsCallingConv.td
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_35/lib/Target/Mips/MipsCallingConv.td?rev=223026&r1=223025&r2=223026&view=diff
==============================================================================
--- llvm/branches/release_35/lib/Target/Mips/MipsCallingConv.td (original)
+++ llvm/branches/release_35/lib/Target/Mips/MipsCallingConv.td Mon Dec  1 08:28:19 2014
@@ -139,7 +139,8 @@ def RetCC_MipsN : CallingConv<[
   CCIfSubtarget<"isLittle()",
       CCIfType<[i8, i16, i32, i64], CCIfInReg<CCPromoteToType<i64>>>>,
   CCIfSubtargetNot<"isLittle()",
-      CCIfType<[i8, i16, i32, i64], CCIfInReg<CCPromoteToUpperBitsInType<i64>>>>,
+      CCIfType<[i8, i16, i32, i64],
+          CCIfInReg<CCPromoteToUpperBitsInType<i64>>>>,
 
   // i64 are returned in registers V0_64, V1_64
   CCIfType<[i64], CCAssignToReg<[V0_64, V1_64]>>,





More information about the llvm-branch-commits mailing list