summaryrefslogtreecommitdiff
path: root/src/compiler_llvm/utils_llvm.h
diff options
context:
space:
mode:
author Logan Chien <loganchien@google.com> 2012-07-03 22:16:07 +0800
committer Shih-wei Liao <sliao@google.com> 2012-07-03 22:36:55 +0800
commita8eed7df4a04d3a002a04f517efe46a7f9b5c603 (patch)
tree99d3b2fb0fac551ddd70ff70505c893779f98246 /src/compiler_llvm/utils_llvm.h
parent4f4dfc7ce0d309448d6fc47737c1f3c0a9eda7e5 (diff)
Use uint32_t for compilation unit index instead of uint16_t.
Change-Id: If89246e35c16a6b50942e0fe7dcc289234bbdfad
Diffstat (limited to 'src/compiler_llvm/utils_llvm.h')
-rw-r--r--src/compiler_llvm/utils_llvm.h2
1 files changed, 1 insertions, 1 deletions
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<unsigned int>(idx));
}