From a8eed7df4a04d3a002a04f517efe46a7f9b5c603 Mon Sep 17 00:00:00 2001 From: Logan Chien Date: Tue, 3 Jul 2012 22:16:07 +0800 Subject: Use uint32_t for compilation unit index instead of uint16_t. Change-Id: If89246e35c16a6b50942e0fe7dcc289234bbdfad --- src/compiler_llvm/utils_llvm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/compiler_llvm/utils_llvm.h') diff --git a/src/compiler_llvm/utils_llvm.h b/src/compiler_llvm/utils_llvm.h index eb5fd53e0a..5ad68d0c89 100644 --- a/src/compiler_llvm/utils_llvm.h +++ b/src/compiler_llvm/utils_llvm.h @@ -32,7 +32,7 @@ namespace art { #define VERIFY_LLVM_FUNCTION(func) #endif -inline static std::string ElfFuncName(uint16_t idx) { +inline static std::string ElfFuncName(uint32_t idx) { return StringPrintf("Art%u", static_cast(idx)); } -- cgit v1.2.3-59-g8ed1b