From 0673b2b1ec8b97d8f62f7574b14a5a34fef6770c Mon Sep 17 00:00:00 2001 From: Jonghyun Park Date: Mon, 13 Feb 2017 10:48:11 +0900 Subject: [x86/Linux] Do NOT treat lea as a jump --- src/jit/emit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jit/emit.cpp b/src/jit/emit.cpp index 1e566b2e76..70a4905e26 100644 --- a/src/jit/emit.cpp +++ b/src/jit/emit.cpp @@ -4233,7 +4233,7 @@ void emitter::emitCheckFuncletBranch(instrDesc* jmp, insGroup* jmpIG) // meets one of those criteria... assert(jmp->idIsBound()); -#ifdef _TARGET_AMD64_ +#ifdef _TARGET_XARCH_ // An lea of a code address (for constant data stored with the code) // is treated like a jump for emission purposes but is not really a jump so // we don't have to check anything here. -- cgit v1.2.3