From: Evan Cheng Date: Tue, 2 Sep 2008 21:59:13 +0000 (+0000) Subject: 80 col violations. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=36fd941fc029c6ea50ed08d26a2bfe4932b9789c;p=oota-llvm.git 80 col violations. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55668 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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; }