summaryrefslogtreecommitdiff
path: root/src/compiler/codegen/Ralloc.h
diff options
context:
space:
mode:
author Elliott Hughes <enh@google.com> 2012-06-20 18:10:21 -0700
committer Elliott Hughes <enh@google.com> 2012-06-21 09:14:27 -0700
commit748474146da0c6484fa3dca0a700f612d47550c3 (patch)
tree58837d0fa82d4099eb4b82b2fd3d2bbf4294e4aa /src/compiler/codegen/Ralloc.h
parent92e3134cd84c134f167175288671a1e6838c908f (diff)
Fix a bunch of lint.
There are still about 1800 lint warnings, so don't get too excited... Change-Id: I2394bd6e750b94060231378b3a7a88b87f70c757
Diffstat (limited to 'src/compiler/codegen/Ralloc.h')
-rw-r--r--src/compiler/codegen/Ralloc.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/compiler/codegen/Ralloc.h b/src/compiler/codegen/Ralloc.h
index ec47e22963..d1518e8e3f 100644
--- a/src/compiler/codegen/Ralloc.h
+++ b/src/compiler/codegen/Ralloc.h
@@ -50,14 +50,12 @@ inline int oatSRegHi(int lowSreg) {
}
-inline bool oatLiveOut(CompilationUnit* cUnit, int sReg)
-{
+inline bool oatLiveOut(CompilationUnit* cUnit, int sReg) {
//For now.
return true;
}
-inline int oatSSASrc(MIR* mir, int num)
-{
+inline int oatSSASrc(MIR* mir, int num) {
DCHECK_GT(mir->ssaRep->numUses, num);
return mir->ssaRep->uses[num];
}