80 col violations.

llvm-svn: 55668
This commit is contained in:
Evan Cheng 2008-09-02 21:59:13 +00:00
parent ca9d93e627
commit 09ff2e7372
1 changed files with 4 additions and 2 deletions

View File

@ -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;
}