summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2017-02-13 21:15:36 -0800
committerGitHub <noreply@github.com>2017-02-13 21:15:36 -0800
commit27fdc2079fc3ffd44c7025155e70d42d2faa19b1 (patch)
tree093fe48da9ccb8fcd9b23db8aad66d2722313e86 /src
parent9d7bb193efc91352f10e3ae4ed1efb48980b2978 (diff)
parent0673b2b1ec8b97d8f62f7574b14a5a34fef6770c (diff)
downloadcoreclr-27fdc2079fc3ffd44c7025155e70d42d2faa19b1.tar.gz
coreclr-27fdc2079fc3ffd44c7025155e70d42d2faa19b1.tar.bz2
coreclr-27fdc2079fc3ffd44c7025155e70d42d2faa19b1.zip
Merge pull request #9546 from parjong/fix/issue_9545
[x86/Linux] Ignore fake jump while checking funclet branches
Diffstat (limited to 'src')
-rw-r--r--src/jit/emit.cpp2
1 files changed, 1 insertions, 1 deletions
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.