diff options
author | Sanjay Patel <spatel@rotateright.com> | 2017-06-09 14:21:18 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2017-06-09 14:21:18 +0000 |
commit | fef83e8fb963ae0cae8f7f8eefa1c0dfe09ca178 (patch) | |
tree | 64956f647cc8a73f5856cd69686c0502df0c6ad4 /llvm/lib/Analysis/ValueTracking.cpp | |
parent | 82618baa0f095fc2ccd74259b7bf778007715af3 (diff) | |
download | bcm5719-llvm-fef83e8fb963ae0cae8f7f8eefa1c0dfe09ca178.tar.gz bcm5719-llvm-fef83e8fb963ae0cae8f7f8eefa1c0dfe09ca178.zip |
[ValueTracking] fix typo; NFC
llvm-svn: 305080
Diffstat (limited to 'llvm/lib/Analysis/ValueTracking.cpp')
-rw-r--r-- | llvm/lib/Analysis/ValueTracking.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ValueTracking.cpp b/llvm/lib/Analysis/ValueTracking.cpp index fed794e71f0..c0181662fd9 100644 --- a/llvm/lib/Analysis/ValueTracking.cpp +++ b/llvm/lib/Analysis/ValueTracking.cpp @@ -3078,7 +3078,7 @@ bool llvm::getConstantStringInfo(const Value *V, StringRef &Str, Str = StringRef("", 1); return true; } - // We cannot instantiate a StringRef as we do not have an apropriate string + // We cannot instantiate a StringRef as we do not have an appropriate string // of 0s at hand. return false; } |