Index: src/compiler/select-lowering.cc |
diff --git a/src/compiler/select-lowering.cc b/src/compiler/select-lowering.cc |
index 3646cf1520a822af969dfb90ed660908d1d0fe89..2e51d72024bb8f96e3f82850352b132c682209bd 100644 |
--- a/src/compiler/select-lowering.cc |
+++ b/src/compiler/select-lowering.cc |
@@ -32,7 +32,7 @@ Reduction SelectLowering::Reduce(Node* node) { |
auto i = merges_.find(cond); |
if (i == merges_.end()) { |
// Create a new diamond for this condition and remember its merge node. |
- Diamond d(graph(), common(), cond); |
+ Diamond d(graph(), common(), cond, p.hint()); |
i = merges_.insert(std::make_pair(cond, d.merge)).first; |
} |