diff options
| author | Jay Foad <jay.foad@gmail.com> | 2014-05-14 21:14:37 +0000 |
|---|---|---|
| committer | Jay Foad <jay.foad@gmail.com> | 2014-05-14 21:14:37 +0000 |
| commit | a0653a3e6cbc820632050bdcf27704ac52fe0559 (patch) | |
| tree | 9eeb142432745e97d37b341ca45167ff2fa724e6 /llvm/lib/Transforms/InstCombine/InstCombine.h | |
| parent | 9ee54d119c132f1d2dfe64f957c48c863783f41c (diff) | |
| download | bcm5719-llvm-a0653a3e6cbc820632050bdcf27704ac52fe0559.tar.gz bcm5719-llvm-a0653a3e6cbc820632050bdcf27704ac52fe0559.zip | |
Rename ComputeMaskedBits to computeKnownBits. "Masked" has been
inappropriate since it lost its Mask parameter in r154011.
llvm-svn: 208811
Diffstat (limited to 'llvm/lib/Transforms/InstCombine/InstCombine.h')
| -rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombine.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombine.h b/llvm/lib/Transforms/InstCombine/InstCombine.h index 0fbc7a46192..e04b1be53df 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombine.h +++ b/llvm/lib/Transforms/InstCombine/InstCombine.h @@ -313,9 +313,9 @@ public: return nullptr; // Don't do anything with FI } - void ComputeMaskedBits(Value *V, APInt &KnownZero, APInt &KnownOne, - unsigned Depth = 0) const { - return llvm::ComputeMaskedBits(V, KnownZero, KnownOne, DL, Depth); + void computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne, + unsigned Depth = 0) const { + return llvm::computeKnownBits(V, KnownZero, KnownOne, DL, Depth); } bool MaskedValueIsZero(Value *V, const APInt &Mask, |

