diff options
author | Sanjay Patel <spatel@rotateright.com> | 2016-01-20 18:59:48 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2016-01-20 18:59:48 +0000 |
commit | f44bd3809295a61be82b283284a36f50da9bf34c (patch) | |
tree | e3f56e28cbb3b5bfb23083e8f96fcdddadce0a66 /llvm/lib/Analysis/InstructionSimplify.cpp | |
parent | 0d5e1b753e49f993832844eb2954cf62f1df1444 (diff) | |
download | llvm-f44bd3809295a61be82b283284a36f50da9bf34c.zip llvm-f44bd3809295a61be82b283284a36f50da9bf34c.tar.gz llvm-f44bd3809295a61be82b283284a36f50da9bf34c.tar.bz2 |
fix typo; NFC
llvm-svn: 258332
Diffstat (limited to 'llvm/lib/Analysis/InstructionSimplify.cpp')
-rw-r--r-- | llvm/lib/Analysis/InstructionSimplify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/InstructionSimplify.cpp b/llvm/lib/Analysis/InstructionSimplify.cpp index 5c4deda..ca12815 100644 --- a/llvm/lib/Analysis/InstructionSimplify.cpp +++ b/llvm/lib/Analysis/InstructionSimplify.cpp @@ -4093,7 +4093,7 @@ Value *llvm::SimplifyInstruction(Instruction *I, const DataLayout &DL, return Result == I ? UndefValue::get(I->getType()) : Result; } -/// \brief Implementation of recursive simplification through an instructions +/// \brief Implementation of recursive simplification through an instruction's /// uses. /// /// This is the common implementation of the recursive simplification routines. |