summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/GVN.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-01-30 22:44:13 +0000
committerChad Rosier <mcrosier@apple.com>2012-01-30 22:44:13 +0000
commit0cf6b99b963e3b269b37f73558ac2f34482f835e (patch)
treec68c89ad96dbae2bc07e0fb1d4ea80e706a54798 /lib/Transforms/Scalar/GVN.cpp
parent431985a421bf2b4327322f256e9cf74df1239c7b (diff)
downloadllvm-0cf6b99b963e3b269b37f73558ac2f34482f835e.tar.gz
llvm-0cf6b99b963e3b269b37f73558ac2f34482f835e.tar.bz2
llvm-0cf6b99b963e3b269b37f73558ac2f34482f835e.tar.xz
Typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149289 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/GVN.cpp')
-rw-r--r--lib/Transforms/Scalar/GVN.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/GVN.cpp b/lib/Transforms/Scalar/GVN.cpp
index 2153182d98..e2617ed3d2 100644
--- a/lib/Transforms/Scalar/GVN.cpp
+++ b/lib/Transforms/Scalar/GVN.cpp
@@ -780,7 +780,7 @@ static int AnalyzeLoadFromClobberingWrite(Type *LoadTy, Value *LoadPtr,
Value *WritePtr,
uint64_t WriteSizeInBits,
const TargetData &TD) {
- // If the loaded or stored value is an first class array or struct, don't try
+ // If the loaded or stored value is a first class array or struct, don't try
// to transform them. We need to be able to bitcast to integer.
if (LoadTy->isStructTy() || LoadTy->isArrayTy())
return -1;