diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-09-02 21:59:13 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-09-02 21:59:13 +0000 |
commit | 09ff2e7372497312019323ea378784d1a3935e39 (patch) | |
tree | 7955590f66e9bb7d545bf230d2098b200b34a8cf /llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | |
parent | ca9d93e62797493bde74c28bec61f25f2b9e5def (diff) | |
download | bcm5719-llvm-09ff2e7372497312019323ea378784d1a3935e39.tar.gz bcm5719-llvm-09ff2e7372497312019323ea378784d1a3935e39.zip |
80 col violations.
llvm-svn: 55668
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/FastISel.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp index 45920ba4906..e44a6c29f55 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -21,7 +21,8 @@ #include "llvm/Target/TargetMachine.h" using namespace llvm; -unsigned FastISel::getRegForValue(Value *V, DenseMap<const Value*, unsigned> &ValueMap) { +unsigned FastISel::getRegForValue(Value *V, + DenseMap<const Value*, unsigned> &ValueMap) { unsigned &Reg = ValueMap[V]; if (Reg != 0) return Reg; @@ -433,7 +434,8 @@ FastISel::FastISel(MachineFunction &mf) FastISel::~FastISel() {} -unsigned FastISel::FastEmit_(MVT::SimpleValueType, MVT::SimpleValueType, ISD::NodeType) { +unsigned FastISel::FastEmit_(MVT::SimpleValueType, MVT::SimpleValueType, + ISD::NodeType) { return 0; } |