[llvm-commits] [llvm] r84311 - /llvm/trunk/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp

Evan Cheng evan.cheng at apple.com
Fri Oct 16 23:05:13 PDT 2009


Author: evancheng
Date: Sat Oct 17 01:05:11 2009
New Revision: 84311

URL: http://llvm.org/viewvc/llvm-project?rev=84311&view=rev
Log:
80 col violation.

Modified:
    llvm/trunk/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp

Modified: llvm/trunk/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp?rev=84311&r1=84310&r2=84311&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp Sat Oct 17 01:05:11 2009
@@ -115,7 +115,8 @@
   // Create the stack frame object.  Make sure it is aligned for both
   // the source and expanded destination types.
   unsigned Alignment =
-    TLI.getTargetData()->getPrefTypeAlignment(NOutVT.getTypeForEVT(*DAG.getContext()));
+    TLI.getTargetData()->getPrefTypeAlignment(NOutVT.
+                                              getTypeForEVT(*DAG.getContext()));
   SDValue StackPtr = DAG.CreateStackTemporary(InVT, Alignment);
   int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
   const Value *SV = PseudoSourceValue::getFixedStack(SPFI);





More information about the llvm-commits mailing list