summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2016-06-25 06:03:14 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2016-06-25 06:03:14 +0000
commitdb39d8993272b22e0412d4252b88afe1fedc0520 (patch)
treeca4a643e262361aca7459ebc16c73ca2f7148c94
parent5e86ac74a4bfdd18ae3f7ad193af00bac47bdb20 (diff)
Fix a typo in FindAvailableLoadedValue, introduced by r273734. [-Wdocumentation]
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273774 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Analysis/Loads.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/Loads.h b/include/llvm/Analysis/Loads.h
index 08381b64823..56435d1dadb 100644
--- a/include/llvm/Analysis/Loads.h
+++ b/include/llvm/Analysis/Loads.h
@@ -83,7 +83,7 @@ extern cl::opt<unsigned> DefMaxInstsToScan;
/// precise.
/// \param [out] AATags The aliasing metadata for the operation which produced
/// the value. FIXME: This is basically useless.
-/// \param [out] isLoadCSE Whether the returned value is a load from the same
+/// \param [out] IsLoadCSE Whether the returned value is a load from the same
/// location in memory, as opposed to the value operand of a store.
///
/// \returns The found value, or nullptr if no value is found.