Implement conditional branch.

Change-Id: I73ea66f9a6547840c85b1a9c416a52d699fe3aa2
diff --git a/src/compiler_llvm/method_compiler.h b/src/compiler_llvm/method_compiler.h
index 08ea789..8833a5c 100644
--- a/src/compiler_llvm/method_compiler.h
+++ b/src/compiler_llvm/method_compiler.h
@@ -279,6 +279,12 @@
   llvm::Value* EmitCompareResultSelection(llvm::Value* cmp_eq,
                                           llvm::Value* cmp_lt);
 
+  llvm::Value* EmitConditionResult(llvm::Value* lhs,
+                                   llvm::Value* rhs,
+                                   CondBranchKind cond);
+
+  RegCategory GetInferredRegCategory(uint32_t dex_pc, uint16_t reg);
+
 
   // Basic block helper functions
   llvm::BasicBlock* GetBasicBlock(uint32_t dex_pc);