diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-05 06:09:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-05 06:09:35 +0000 |
commit | dc054bf39a238681aebd076bcff0f2772909b7f4 (patch) | |
tree | e476c151ce59ae906778fa2ab62397cdf018f107 /llvm/lib/Transforms/InstCombine/InstCombine.h | |
parent | 1e7b7b50b1e32b4d667b7e2720d7bbcabc8818ac (diff) | |
download | bcm5719-llvm-dc054bf39a238681aebd076bcff0f2772909b7f4.tar.gz bcm5719-llvm-dc054bf39a238681aebd076bcff0f2772909b7f4.zip |
split mul/div/rem instructions out to their own file.
llvm-svn: 92689
Diffstat (limited to 'llvm/lib/Transforms/InstCombine/InstCombine.h')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombine.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombine.h b/llvm/lib/Transforms/InstCombine/InstCombine.h index 7e20be41af6..e6ad1c73c25 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombine.h +++ b/llvm/lib/Transforms/InstCombine/InstCombine.h @@ -195,6 +195,7 @@ public: private: bool ShouldChangeType(const Type *From, const Type *To) const; Value *dyn_castNegVal(Value *V) const; + Value *dyn_castFNegVal(Value *V) const; const Type *FindElementAtOffset(const Type *Ty, int64_t Offset, SmallVectorImpl<Value*> &NewIndices); Instruction *FoldOpIntoSelect(Instruction &Op, SelectInst *SI); |