Index: src/compiler/instruction.cc |
diff --git a/src/compiler/instruction.cc b/src/compiler/instruction.cc |
index 962548a48e60ae8deb49bab63909a5de7baa7503..ba72eda2ec73ff58018c2b3a83ab45f301e106ed 100644 |
--- a/src/compiler/instruction.cc |
+++ b/src/compiler/instruction.cc |
@@ -287,18 +287,16 @@ |
if (instr.IsGapMoves()) { |
const GapInstruction* gap = GapInstruction::cast(&instr); |
- if (!gap->IsRedundant()) { |
- os << "gap "; |
- for (int i = GapInstruction::FIRST_INNER_POSITION; |
- i <= GapInstruction::LAST_INNER_POSITION; i++) { |
- os << "("; |
- if (gap->parallel_moves_[i] != NULL) { |
- PrintableParallelMove ppm = {printable.register_configuration_, |
- gap->parallel_moves_[i]}; |
- os << ppm; |
- } |
- os << ") "; |
+ os << "gap "; |
+ for (int i = GapInstruction::FIRST_INNER_POSITION; |
+ i <= GapInstruction::LAST_INNER_POSITION; i++) { |
+ os << "("; |
+ if (gap->parallel_moves_[i] != NULL) { |
+ PrintableParallelMove ppm = {printable.register_configuration_, |
+ gap->parallel_moves_[i]}; |
+ os << ppm; |
} |
+ os << ") "; |
} |
} else if (instr.IsSourcePosition()) { |
const SourcePositionInstruction* pos = |