wrap long line
authorChris Lattner <sabre@nondot.org>
Wed, 11 May 2005 18:57:06 +0000 (18:57 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 11 May 2005 18:57:06 +0000 (18:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21870 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

index d6ec50ae166e757e37e04a8ff853abbf7b634c57..2fadb3937108be36628a37dc208f2ba7a49b801a 100644 (file)
@@ -128,7 +128,8 @@ FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
   // Initialize the mapping of values to registers.  This is only set up for
   // instruction values that are used outside of the block that defines
   // them.
-  for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end(); AI != E; ++AI)
+  for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
+       AI != E; ++AI)
     InitializeRegForValue(AI);
 
   Function::iterator BB = Fn.begin(), E = Fn.end();