From a114add0300b95eeaae7465493f39144e07324e8 Mon Sep 17 00:00:00 2001 From: Bill Buzbee Date: Thu, 3 May 2012 15:00:40 -0700 Subject: [Compiler] use Art indentation standard First of several CLs to bring code closer to alignment with Art and LLVM standards. Move to 2-space indenting. Sticking with 80-col line length (which LLVM apparently also wants). LLVM also prefers camel case names, so keeping Dalvik convention there as well (for now). Change-Id: I351ab234e640678d97747377cccdd6df0a770f4a --- src/compiler/codegen/CompilerCodegen.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/compiler/codegen/CompilerCodegen.h') diff --git a/src/compiler/codegen/CompilerCodegen.h b/src/compiler/codegen/CompilerCodegen.h index 20b2e45574..9381735728 100644 --- a/src/compiler/codegen/CompilerCodegen.h +++ b/src/compiler/codegen/CompilerCodegen.h @@ -22,7 +22,8 @@ namespace art { LIR* rawLIR(CompilationUnit* cUnit, int dalvikOffset, int opcode, int op0 = 0, - int op1 = 0, int op2 = 0, int op3 = 0, int op4 = 0, LIR* target = NULL); + int op1 = 0, int op2 = 0, int op3 = 0, int op4 = 0, + LIR* target = NULL); int oatGetInsnSize(LIR* lir); -- cgit v1.2.3-59-g8ed1b