diff options
author | Ian Rogers <irogers@google.com> | 2013-12-31 19:27:52 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-12-31 19:27:53 +0000 |
commit | d907de554036cc37444b914725510b458ed545b3 (patch) | |
tree | 6ffa3207c5bc8d10561c4c30b53af0ecff45e734 | |
parent | 704e08c3f2f1bbfdfc2c8d5a3ce1afdba0ec20d8 (diff) | |
parent | d5d90964a6b71f9f273a7ea1d631c972e99c98f0 (diff) | |
download | android_dalvik-d907de554036cc37444b914725510b458ed545b3.tar.gz android_dalvik-d907de554036cc37444b914725510b458ed545b3.tar.bz2 android_dalvik-d907de554036cc37444b914725510b458ed545b3.zip |
Merge "Initialize callTgt variable"
-rw-r--r-- | vm/compiler/codegen/arm/CodegenDriver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/compiler/codegen/arm/CodegenDriver.cpp b/vm/compiler/codegen/arm/CodegenDriver.cpp index 3f00f4385..499ac4928 100644 --- a/vm/compiler/codegen/arm/CodegenDriver.cpp +++ b/vm/compiler/codegen/arm/CodegenDriver.cpp @@ -780,7 +780,7 @@ static bool genArithOpInt(CompilationUnit *cUnit, MIR *mir, bool checkZero = false; bool unary = false; int retReg = r0; - int (*callTgt)(int, int); + int (*callTgt)(int, int) = NULL; RegLocation rlResult; bool shiftOp = false; bool remOp = false; |