diff options
author | 2013-07-18 15:54:44 -0700 | |
---|---|---|
committer | 2013-07-18 16:02:33 -0700 | |
commit | 02c8cc6d1312a2b55533f02f6369dc7c94672f90 (patch) | |
tree | 4e4a268e8cb82dcd95f8e29a8169b0396e20b0cc /compiler/dex/quick/ralloc_util.cc | |
parent | 6f485c62b9cfce3ab71020c646ab9f48d9d29d6d (diff) |
Fixing cpplint whitespace/blank_line, whitespace/end_of_line, whitespace/labels, whitespace/semicolon issues
Change-Id: Ide4f8ea608338b3fed528de7582cfeb2011997b6
Diffstat (limited to 'compiler/dex/quick/ralloc_util.cc')
-rw-r--r-- | compiler/dex/quick/ralloc_util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/quick/ralloc_util.cc b/compiler/dex/quick/ralloc_util.cc index 92bd94eb78..4542f8f0b0 100644 --- a/compiler/dex/quick/ralloc_util.cc +++ b/compiler/dex/quick/ralloc_util.cc @@ -507,7 +507,7 @@ void Mir2Lir::NullifyRange(LIR *start, LIR *finish, int s_reg1, int s_reg2) { if (start && finish) { LIR *p; DCHECK_EQ(s_reg1, s_reg2); - for (p = start; ;p = p->next) { + for (p = start; ; p = p->next) { NopLIR(p); if (p == finish) break; |