summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support/FoldingSet.cpp
diff options
context:
space:
mode:
authorSanjay Patel <spatel@rotateright.com>2015-04-06 16:21:12 +0000
committerSanjay Patel <spatel@rotateright.com>2015-04-06 16:21:12 +0000
commit16ab5e698f80358bdcc296a1180466912f7810d1 (patch)
tree1569ea64f5683baf552ab35665860ae5ad411e89 /llvm/lib/Support/FoldingSet.cpp
parent82a2202ae6f1107ee61ee354b6214150743746c1 (diff)
downloadbcm5719-llvm-16ab5e698f80358bdcc296a1180466912f7810d1.tar.gz
bcm5719-llvm-16ab5e698f80358bdcc296a1180466912f7810d1.zip
fix typos; NFC
llvm-svn: 234171
Diffstat (limited to 'llvm/lib/Support/FoldingSet.cpp')
-rw-r--r--llvm/lib/Support/FoldingSet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/FoldingSet.cpp b/llvm/lib/Support/FoldingSet.cpp
index 80d2aefe870..b8538ffe1f9 100644
--- a/llvm/lib/Support/FoldingSet.cpp
+++ b/llvm/lib/Support/FoldingSet.cpp
@@ -51,8 +51,8 @@ bool FoldingSetNodeIDRef::operator<(FoldingSetNodeIDRef RHS) const {
///
void FoldingSetNodeID::AddPointer(const void *Ptr) {
// Note: this adds pointers to the hash using sizes and endianness that
- // depend on the host. It doesn't matter however, because hashing on
- // pointer values in inherently unstable. Nothing should depend on the
+ // depend on the host. It doesn't matter, however, because hashing on
+ // pointer values is inherently unstable. Nothing should depend on the
// ordering of nodes in the folding set.
Bits.append(reinterpret_cast<unsigned *>(&Ptr),
reinterpret_cast<unsigned *>(&Ptr+1));
OpenPOWER on IntegriCloud