summaryrefslogtreecommitdiffstats
path: root/runtime/interpreter/interpreter.cc
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-07-18 13:28:37 -0700
committerBrian Carlstrom <bdc@google.com>2013-07-18 14:38:27 -0700
commit1895ea386ca78573302483f589ebabd8ce1480e7 (patch)
treed8c2d27ac746f29c8248fe17fd6b8e9872556fc4 /runtime/interpreter/interpreter.cc
parent3e3d591f781b771de89f3b989830da2b6ac6fac8 (diff)
downloadart-1895ea386ca78573302483f589ebabd8ce1480e7.zip
art-1895ea386ca78573302483f589ebabd8ce1480e7.tar.gz
art-1895ea386ca78573302483f589ebabd8ce1480e7.tar.bz2
Fix cpplint readability/fn_size issues
Change-Id: I1efdb07a948a2af49db1a9d21ccab16dacc03a54
Diffstat (limited to 'runtime/interpreter/interpreter.cc')
-rw-r--r--runtime/interpreter/interpreter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/interpreter/interpreter.cc b/runtime/interpreter/interpreter.cc
index f624aa4..09a0fc7 100644
--- a/runtime/interpreter/interpreter.cc
+++ b/runtime/interpreter/interpreter.cc
@@ -2964,7 +2964,7 @@ static JValue ExecuteImpl(Thread* self, MethodHelper& mh, const DexFile::CodeIte
UnexpectedOpcode(inst, mh);
}
}
-}
+} // NOLINT(readability/fn_size)
static JValue Execute(Thread* self, MethodHelper& mh, const DexFile::CodeItem* code_item,
ShadowFrame& shadow_frame, JValue result_register)