Subzero: Remove a TODO comment about shld/shrd.
The 32-bit validator is now consistent with the 64-bit
validator w.r.t. 16-bit shld/shrd and accepts it. We didn't
really use the 16-bit form in Subzero though, only the 32-bit
one for 64-bit ops, I think.
BUG=none
R=stichnot@chromium.org
Review URL: https://codereview.chromium.org/696753003
diff --git a/src/IceInstX8632.h b/src/IceInstX8632.h
index b9868c0..eb831ac 100644
--- a/src/IceInstX8632.h
+++ b/src/IceInstX8632.h
@@ -993,8 +993,7 @@
~InstX8632Mul() override {}
};
-// Shld instruction - shift across a pair of operands. TODO: Verify
-// that the validator accepts the shld instruction.
+// Shld instruction - shift across a pair of operands.
class InstX8632Shld : public InstX8632 {
InstX8632Shld(const InstX8632Shld &) = delete;
InstX8632Shld &operator=(const InstX8632Shld &) = delete;
@@ -1016,8 +1015,7 @@
~InstX8632Shld() override {}
};
-// Shrd instruction - shift across a pair of operands. TODO: Verify
-// that the validator accepts the shrd instruction.
+// Shrd instruction - shift across a pair of operands.
class InstX8632Shrd : public InstX8632 {
InstX8632Shrd(const InstX8632Shrd &) = delete;
InstX8632Shrd &operator=(const InstX8632Shrd &) = delete;