diff options
Diffstat (limited to 'include/llvm/CodeGen')
| -rw-r--r-- | include/llvm/CodeGen/FastISel.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/FastISel.h b/include/llvm/CodeGen/FastISel.h index 705db7e643..57273d8b81 100644 --- a/include/llvm/CodeGen/FastISel.h +++ b/include/llvm/CodeGen/FastISel.h @@ -372,6 +372,11 @@ protected: return 0; } + /// Whether we should skip target-independent fast-isel + virtual bool SkipTargetIndependentFastISel() { + return false; + } + private: bool SelectBinaryOp(const User *I, unsigned ISDOpcode); |
