summaryrefslogtreecommitdiff
path: root/src/compiler/CompilerUtility.h
diff options
context:
space:
mode:
author buzbee <buzbee@google.com> 2011-09-23 17:34:19 -0700
committer buzbee <buzbee@google.com> 2011-09-23 18:34:31 -0700
commited3e930109e3f01804ca32cee4afe4f2d4b3f4d8 (patch)
tree41c3ffd3fdade2244b4cd3824c98419edecbca86 /src/compiler/CompilerUtility.h
parent8060925c45cc2607ab92390d7366c6c0cfdfe4bb (diff)
assert to DCHECK conversion
Also replaced static function defs with a STATIC macro to make normally hidden functions visible to DCHECK's traceback listing). Additionally, added some portions of the new type & size inference mechanism (but not taking advantage of them yet). Change-Id: Ib42a08777f28ab879d0df37617e1b77e3f09ba52
Diffstat (limited to 'src/compiler/CompilerUtility.h')
-rw-r--r--src/compiler/CompilerUtility.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/CompilerUtility.h b/src/compiler/CompilerUtility.h
index eaf712df7d..1d969e7fd6 100644
--- a/src/compiler/CompilerUtility.h
+++ b/src/compiler/CompilerUtility.h
@@ -109,6 +109,6 @@ void oatDumpResourceMask(struct LIR* lir, u8 mask, const char* prefix);
void oatDumpBlockBitVector(const GrowableList* blocks, char* msg,
const ArenaBitVector* bv, int length);
void oatGetBlockName(struct BasicBlock* bb, char* name);
-
+const char* oatGetShortyFromTargetIdx(CompilationUnit*, int);
#endif // ART_SRC_COMPILER_COMPILER_UTILITY_H_