diff options
author | 2013-07-23 14:31:47 -0700 | |
---|---|---|
committer | 2013-07-23 22:48:32 +0000 | |
commit | 81f79a6672a0bd610f05770d8c96e03e276798da (patch) | |
tree | 1b9c9c3d60a528293d822b33bb9d3008913c0218 /compiler/sea_ir/frontend.cc | |
parent | 35275ec4cfe0ebfc247d13c2c96d27c10dc804f9 (diff) |
Refactored string to int conversion.
I was using stringstream for int to std::string, but the StringPrintf
utility is shorter and cleaner.
Change-Id: I454488602459071abb8b846ff7ac8b9594e9d824
Diffstat (limited to 'compiler/sea_ir/frontend.cc')
-rw-r--r-- | compiler/sea_ir/frontend.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/sea_ir/frontend.cc b/compiler/sea_ir/frontend.cc index 7bfc9bae91..bae3cb296c 100644 --- a/compiler/sea_ir/frontend.cc +++ b/compiler/sea_ir/frontend.cc @@ -47,7 +47,6 @@ static CompiledMethod* CompileMethodWithSeaIr(CompilerDriver& compiler, return NULL; } - CompiledMethod* SeaIrCompileOneMethod(CompilerDriver& compiler, const CompilerBackend backend, const DexFile::CodeItem* code_item, |