diff options
author | 2012-06-06 11:01:00 +0800 | |
---|---|---|
committer | 2012-06-06 21:22:11 -0700 | |
commit | 7a2a23a44d27f769718e28327af671f4e486c49a (patch) | |
tree | 345a05da812927dafe13af82a4926257c3b368e9 /src/compiler_llvm/stub_compiler.h | |
parent | 95dfa6a8c522ad84a492d88666ea69fe7a3852c5 (diff) |
Cleanup proxy stub compiler code.
Change-Id: I2a5815cc2a38f5cea9e9c36e5e6db92c1a861eaa
Diffstat (limited to 'src/compiler_llvm/stub_compiler.h')
-rw-r--r-- | src/compiler_llvm/stub_compiler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler_llvm/stub_compiler.h b/src/compiler_llvm/stub_compiler.h index 4b49ec49a9..0ed626169b 100644 --- a/src/compiler_llvm/stub_compiler.h +++ b/src/compiler_llvm/stub_compiler.h @@ -41,8 +41,8 @@ class StubCompiler { public: StubCompiler(CompilationUnit* cunit, Compiler& compiler); - uint16_t CreateInvokeStub(bool is_static, char const* shorty); - uint16_t CreateProxyStub(bool is_static, char const* shorty); + CompiledInvokeStub* CreateInvokeStub(bool is_static, char const* shorty); + CompiledInvokeStub* CreateProxyStub(char const* shorty); private: CompilationUnit* cunit_; |