From 36fd941fc029c6ea50ed08d26a2bfe4932b9789c Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Tue, 2 Sep 2008 21:59:13 +0000 Subject: [PATCH] 80 col violations. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55668 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/FastISel.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp index 45920ba4906..e44a6c29f55 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 &ValueMap) { +unsigned FastISel::getRegForValue(Value *V, + DenseMap &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; }