diff options
| author | Dan Gohman <gohman@apple.com> | 2010-04-07 23:22:42 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2010-04-07 23:22:42 +0000 |
| commit | b230da0cace33a9a2e89936c5dc8126de89efc6b (patch) | |
| tree | 48b470e32ed1e04ba16161cd722620fc1d0e300f /lib/Transforms/InstCombine/InstCombineCasts.cpp | |
| parent | 05f3d97f57e41863ea6eb981db542f413429e9db (diff) | |
| download | external_llvm-b230da0cace33a9a2e89936c5dc8126de89efc6b.zip external_llvm-b230da0cace33a9a2e89936c5dc8126de89efc6b.tar.gz external_llvm-b230da0cace33a9a2e89936c5dc8126de89efc6b.tar.bz2 | |
Say bitcast instead of bitconvert.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100720 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/InstCombine/InstCombineCasts.cpp')
| -rw-r--r-- | lib/Transforms/InstCombine/InstCombineCasts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/InstCombine/InstCombineCasts.cpp b/lib/Transforms/InstCombine/InstCombineCasts.cpp index a68fc6d..eb7628e 100644 --- a/lib/Transforms/InstCombine/InstCombineCasts.cpp +++ b/lib/Transforms/InstCombine/InstCombineCasts.cpp @@ -1323,7 +1323,7 @@ Instruction *InstCombiner::visitBitCast(BitCastInst &CI) { if (ShuffleVectorInst *SVI = dyn_cast<ShuffleVectorInst>(Src)) { // Okay, we have (bitcast (shuffle ..)). Check to see if this is - // a bitconvert to a vector with the same # elts. + // a bitcast to a vector with the same # elts. if (SVI->hasOneUse() && DestTy->isVectorTy() && cast<VectorType>(DestTy)->getNumElements() == SVI->getType()->getNumElements() && |
