diff options
author | Chris Lattner <sabre@nondot.org> | 2005-05-11 18:57:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-05-11 18:57:06 +0000 |
commit | 490769c5b6be7cefa80d03f8e28962830ea23d66 (patch) | |
tree | 30e6d0def7b71122c768e383bd9c820657f1f07a /llvm/lib/CodeGen | |
parent | 7933dcdb6ecdb942e328305dd0c4304034378108 (diff) | |
download | bcm5719-llvm-490769c5b6be7cefa80d03f8e28962830ea23d66.tar.gz bcm5719-llvm-490769c5b6be7cefa80d03f8e28962830ea23d66.zip |
wrap long line
llvm-svn: 21870
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index d6ec50ae166..2fadb393710 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -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(); |