From ebe8f551bf59befc8925681f50e43d83e6823992 Mon Sep 17 00:00:00 2001 From: Dongyun Jin Date: Thu, 12 May 2016 15:24:07 +0900 Subject: [PATCH] Fixed a build error on ARM The recent commit (61fe464) breaks ARM build. It defines emitInsToJumpKind twice in src/jit/emit.h on ARM. Signed-off-by: Dongyun Jin Signed-off-by: Jiyoung Yun --- src/jit/emit.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/jit/emit.h b/src/jit/emit.h index 41fc46c..ea9d19b 100644 --- a/src/jit/emit.h +++ b/src/jit/emit.h @@ -1825,7 +1825,6 @@ public: static emitJumpKind emitReverseJumpKind(emitJumpKind jumpKind); #ifdef _TARGET_ARM_ - static emitJumpKind emitInsToJumpKind(instruction ins); static unsigned emitJumpKindCondCode(emitJumpKind jumpKind); #endif -- 2.7.4