diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2016-10-05 19:25:20 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2016-10-05 19:25:20 +0000 |
commit | d799d28540921986e2d336073c535d192c7bcebc (patch) | |
tree | 56a3bee31fe2bf7830ad425ad5f1ef71afa32dc4 /llvm/utils/TableGen/FastISelEmitter.cpp | |
parent | 6a8e0bcf3d02bd0e19b8c7d9fd0be88262423d72 (diff) | |
download | bcm5719-llvm-d799d28540921986e2d336073c535d192c7bcebc.tar.gz bcm5719-llvm-d799d28540921986e2d336073c535d192c7bcebc.zip |
FastISel: Remove unused/un-overridden entry points. NFCI.
llvm-svn: 283366
Diffstat (limited to 'llvm/utils/TableGen/FastISelEmitter.cpp')
-rw-r--r-- | llvm/utils/TableGen/FastISelEmitter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/utils/TableGen/FastISelEmitter.cpp b/llvm/utils/TableGen/FastISelEmitter.cpp index debb12c4f51..30a57b502bf 100644 --- a/llvm/utils/TableGen/FastISelEmitter.cpp +++ b/llvm/utils/TableGen/FastISelEmitter.cpp @@ -564,8 +564,7 @@ void FastISelMap::collectPatterns(CodeGenDAGPatterns &CGP) { Operands.PrintManglingSuffix(SuffixOS, ImmediatePredicates, true); SuffixOS.flush(); if (!StringSwitch<bool>(ManglingSuffix) - .Cases("", "r", "rr", "ri", "rf", true) - .Cases("rri", "i", "f", true) + .Cases("", "r", "rr", "ri", "i", "f", true) .Default(false)) continue; |