diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-04-01 20:09:03 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-04-01 20:09:03 +0000 |
commit | 398b8c5faff9ea9aa7adc586d2b52e0e1ce16fde (patch) | |
tree | 0921aa5c592a22d68446fc89e4efe34b4469ce8d /llvm/lib/Transforms/InstCombine/InstCombine.h | |
parent | 8b1bca199897a6e3b7b849b5fa69e07b110c9ce0 (diff) | |
download | bcm5719-llvm-398b8c5faff9ea9aa7adc586d2b52e0e1ce16fde.tar.gz bcm5719-llvm-398b8c5faff9ea9aa7adc586d2b52e0e1ce16fde.zip |
InstCombine: Move (sext icmp) transforms into their own method. No intended functionality change.
llvm-svn: 128731
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 d5de53aa926..625f54685e5 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombine.h +++ b/llvm/lib/Transforms/InstCombine/InstCombine.h @@ -217,6 +217,7 @@ private: Instruction *transformCallThroughTrampoline(CallSite CS); Instruction *transformZExtICmp(ICmpInst *ICI, Instruction &CI, bool DoXform = true); + Instruction *transformSExtICmp(ICmpInst *ICI, Instruction &CI); bool WillNotOverflowSignedAdd(Value *LHS, Value *RHS); Value *EmitGEPOffset(User *GEP); |