summaryrefslogtreecommitdiff
path: root/src/debug
diff options
context:
space:
mode:
authorAditya Mandaleeka <adityamandaleeka@users.noreply.github.com>2016-06-22 17:11:12 -0700
committerGitHub <noreply@github.com>2016-06-22 17:11:12 -0700
commite39a3aeddbac22ceb820c1edc64b634f9e152956 (patch)
tree0124dcffdea606a7a14bd61c86d47c324e154f3b /src/debug
parentbf325ae4ab002048b5049c3dc4cc4598a79e535c (diff)
parent7786c27295602d3ca6b498af674c4f5135765fc3 (diff)
downloadcoreclr-e39a3aeddbac22ceb820c1edc64b634f9e152956.tar.gz
coreclr-e39a3aeddbac22ceb820c1edc64b634f9e152956.tar.bz2
coreclr-e39a3aeddbac22ceb820c1edc64b634f9e152956.zip
Merge pull request #3484 from Dmitry-Me/fixBrokenCondition
Fix impossible condition
Diffstat (limited to 'src/debug')
-rw-r--r--src/debug/ee/amd64/amd64walker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/ee/amd64/amd64walker.cpp b/src/debug/ee/amd64/amd64walker.cpp
index 5266038e18..836d21486e 100644
--- a/src/debug/ee/amd64/amd64walker.cpp
+++ b/src/debug/ee/amd64/amd64walker.cpp
@@ -744,7 +744,7 @@ LLegacyPrefix:
}
// RET
- if ((lowNibble == 0x2) && (lowNibble == 0x3))
+ if ((lowNibble == 0x2) || (lowNibble == 0x3))
{
break;
}