Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1111)

Unified Diff: syzygy/block_graph/basic_block_assembler.cc

Issue 2535563002: Added all code for integrity check transform (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | syzygy/experimental/experimental.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: syzygy/block_graph/basic_block_assembler.cc
diff --git a/syzygy/block_graph/basic_block_assembler.cc b/syzygy/block_graph/basic_block_assembler.cc
index f2bd0bb0401a509468513c7cd4c62c17f7713906..8ebb6614dae58600ee060b86c8e46376fafbc973 100644
--- a/syzygy/block_graph/basic_block_assembler.cc
+++ b/syzygy/block_graph/basic_block_assembler.cc
@@ -242,9 +242,13 @@ void BasicBlockAssembler::jmp(const Operand& dst) {
Super::jmp(dst);
}
+void BasicBlockAssembler::jmp(const Register32& dst) {
+ Super::jmp(dst);
+}
+
void BasicBlockAssembler::j(ConditionCode code, const Immediate& dst) {
DCHECK(dst.reference().IsValid());
Super::j(code, dst);
}
-} // namespace block_graph
+} // namespace block_graph
« no previous file with comments | « no previous file | syzygy/experimental/experimental.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698