diff options
Diffstat (limited to 'src/compiler_llvm/dalvik_reg.h')
| -rw-r--r-- | src/compiler_llvm/dalvik_reg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler_llvm/dalvik_reg.h b/src/compiler_llvm/dalvik_reg.h index e6e5b05de6..2b17541254 100644 --- a/src/compiler_llvm/dalvik_reg.h +++ b/src/compiler_llvm/dalvik_reg.h @@ -47,7 +47,7 @@ class DalvikReg { return GetValue(GetJTypeFromShorty(shorty), space); } - void SetValue(JType jty, JTypeSpace space, llvm::Value* value); + virtual void SetValue(JType jty, JTypeSpace space, llvm::Value* value); void SetValue(char shorty, JTypeSpace space, llvm::Value* value) { return SetValue(GetJTypeFromShorty(shorty), space, value); |