aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/FastISel.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-09-02 21:59:13 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-09-02 21:59:13 +0000
commit36fd941fc029c6ea50ed08d26a2bfe4932b9789c (patch)
tree724cb3d26b16fb191f94d59ed70447ad97415c95 /lib/CodeGen/SelectionDAG/FastISel.cpp
parent7ad033c9e7a6b164fe971be82f6dc8ec9dc977b3 (diff)
80 col violations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55668 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/FastISel.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/FastISel.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp
index 45920ba490..e44a6c29f5 100644
--- a/lib/CodeGen/SelectionDAG/FastISel.cpp
+++ b/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;
}