X86: Remove dead code. NFC.

llvm-svn: 291721
This commit is contained in:
Peter Collingbourne 2017-01-11 23:00:28 +00:00
parent 24a1273ae1
commit 1b5f1cfdb4
1 changed files with 0 additions and 10 deletions

View File

@ -183,16 +183,6 @@ namespace {
void PreprocessISelDAG() override;
inline bool immSext8(SDNode *N) const {
return isInt<8>(cast<ConstantSDNode>(N)->getSExtValue());
}
// True if the 64-bit immediate fits in a 32-bit sign-extended field.
inline bool i64immSExt32(SDNode *N) const {
uint64_t v = cast<ConstantSDNode>(N)->getZExtValue();
return (int64_t)v == (int32_t)v;
}
// Include the pieces autogenerated from the target description.
#include "X86GenDAGISel.inc"