summaryrefslogtreecommitdiff
path: root/src/jit/emit.h
diff options
context:
space:
mode:
authorDongyun Jin <dongyun.jin@samsung.com>2016-05-12 15:24:07 +0900
committerDongyun Jin <dongyun.jin@samsung.com>2016-05-12 15:24:07 +0900
commitebe8f551bf59befc8925681f50e43d83e6823992 (patch)
tree1c801fe55e0555e792931fa36c13fffd65825c46 /src/jit/emit.h
parentad317b984e82c1208d5e2dcec807192a24b881d7 (diff)
downloadcoreclr-ebe8f551bf59befc8925681f50e43d83e6823992.tar.gz
coreclr-ebe8f551bf59befc8925681f50e43d83e6823992.tar.bz2
coreclr-ebe8f551bf59befc8925681f50e43d83e6823992.zip
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 <dongyun.jin@samsung.com> Signed-off-by: Jiyoung Yun <jy910.yun@samsung.com>
Diffstat (limited to 'src/jit/emit.h')
-rw-r--r--src/jit/emit.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/jit/emit.h b/src/jit/emit.h
index 41fc46ca70..ea9d19b578 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