aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Foad <jay.foad@amd.com>2023-12-09 10:12:32 +0000
committerJay Foad <jay.foad@amd.com>2023-12-09 10:12:32 +0000
commitb3000ecb3c165b7b14d997ee4ae96feed4e5e767 (patch)
tree4ddcc05a40014d09e8e4fa13acc16041f6fc1d23
parent6ed9a81f7ebd23f125867dd270785dd0e63043c6 (diff)
downloadllvm-b3000ecb3c165b7b14d997ee4ae96feed4e5e767.zip
llvm-b3000ecb3c165b7b14d997ee4ae96feed4e5e767.tar.gz
llvm-b3000ecb3c165b7b14d997ee4ae96feed4e5e767.tar.bz2
[SelectionDAG] Fix typo in comment
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
index ed1c96a..4fd76d0 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@ -7123,7 +7123,7 @@ void SelectionDAGBuilder::visitIntrinsicCall(const CallInst &I,
EVT::getIntegerVT(*Context, 8), MachinePointerInfo(I.getArgOperand(0)),
/* align */ std::nullopt, Flags);
- // Chain the prefetch in parallell with any pending loads, to stay out of
+ // Chain the prefetch in parallel with any pending loads, to stay out of
// the way of later optimizations.
PendingLoads.push_back(Result);
Result = getRoot();