| Index: src/compiler/select-lowering.h
|
| diff --git a/src/compiler/select-lowering.h b/src/compiler/select-lowering.h
|
| index 05ea0e0c75869c8063362cef35276fbb70491daf..ae22cade84420584cd21bb41140b343c51213c33 100644
|
| --- a/src/compiler/select-lowering.h
|
| +++ b/src/compiler/select-lowering.h
|
| @@ -28,10 +28,8 @@ class SelectLowering FINAL : public Reducer {
|
| Reduction Reduce(Node* node) OVERRIDE;
|
|
|
| private:
|
| - typedef std::multimap<Node*, Node*, std::less<Node*>,
|
| - zone_allocator<std::pair<Node* const, Node*>>> Merges;
|
| -
|
| - bool ReachableFrom(Node* const sink, Node* const source);
|
| + typedef std::map<Node*, Node*, std::less<Node*>,
|
| + zone_allocator<std::pair<Node* const, Node*>>> Merges;
|
|
|
| CommonOperatorBuilder* common() const { return common_; }
|
| Graph* graph() const { return graph_; }
|
|
|