Index: src/compiler/instruction-selector.h |
diff --git a/src/compiler/instruction-selector.h b/src/compiler/instruction-selector.h |
index c4cf18bc770a9769bb32b9cb347ddc73fcb48829..1f10f13d0016e445146fdc4959ededfbc7ef2b49 100644 |
--- a/src/compiler/instruction-selector.h |
+++ b/src/compiler/instruction-selector.h |
@@ -88,6 +88,8 @@ class InstructionSelector FINAL { |
// Checks if {node} is currently live. |
bool IsLive(Node* node) const { return !IsDefined(node) && IsUsed(node); } |
+ static SupportedOperators GetSupportedOperators(); |
Benedikt Meurer
2014/10/23 07:11:14
This should take a CpuFeatures parameter, because
sigurds
2014/10/23 10:37:56
As discussed, I'll add a todo.
|
+ |
private: |
friend class OperandGenerator; |