diff options
author | 2012-05-01 15:47:55 +0800 | |
---|---|---|
committer | 2012-06-27 03:47:58 -0700 | |
commit | 971bf3f9184010d68b9a3ad30b396fa401af91a3 (patch) | |
tree | 493e80309ce41fd21359da8093fbebfd21b7936c /src/compiler_llvm/utils_llvm.h | |
parent | 468a7b1fcb2114ec973e31b5276daea0be62c198 (diff) |
Compile method one-by-one.
Change-Id: Ic56fb397f3bd6dee32372eb875261a3383eaf30c
Diffstat (limited to 'src/compiler_llvm/utils_llvm.h')
-rw-r--r-- | src/compiler_llvm/utils_llvm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler_llvm/utils_llvm.h b/src/compiler_llvm/utils_llvm.h index dd35f0a089..eb5fd53e0a 100644 --- a/src/compiler_llvm/utils_llvm.h +++ b/src/compiler_llvm/utils_llvm.h @@ -32,8 +32,8 @@ namespace art { #define VERIFY_LLVM_FUNCTION(func) #endif -inline static std::string ElfFuncName(uint16_t elf_func_idx) { - return StringPrintf("Art%u", static_cast<unsigned int>(elf_func_idx)); +inline static std::string ElfFuncName(uint16_t idx) { + return StringPrintf("Art%u", static_cast<unsigned int>(idx)); } class CStringLessThanComparator { |