aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
diff options
context:
space:
mode:
authorDavid Green <david.green@arm.com>2024-01-16 17:22:06 +0000
committerDavid Green <david.green@arm.com>2024-01-16 17:22:06 +0000
commit7850c94b86ac4889f4c792a487f4c0b0c5759a98 (patch)
treeb32fb5165e11a3f2138ddaf6ddadbb139fe5a374 /llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
parent093206bb7eddf53cf6e1ffe4c0ffc09d37785e27 (diff)
downloadllvm-7850c94b86ac4889f4c792a487f4c0b0c5759a98.zip
llvm-7850c94b86ac4889f4c792a487f4c0b0c5759a98.tar.gz
llvm-7850c94b86ac4889f4c792a487f4c0b0c5759a98.tar.bz2
[NFC] sentinal -> sentinel
Diffstat (limited to 'llvm/lib/Transforms/Utils/BasicBlockUtils.cpp')
-rw-r--r--llvm/lib/Transforms/Utils/BasicBlockUtils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp b/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
index 8b5a6d6..e019f76 100644
--- a/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
+++ b/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
@@ -536,7 +536,7 @@ static bool removeRedundantDbgInstrsUsingForwardScan(BasicBlock *BB) {
SmallVector<Value *, 4> Values(DVI->getValues());
if (VMI == VariableMap.end() || VMI->second.first != Values ||
VMI->second.second != DVI->getExpression()) {
- // Use a sentinal value (nullptr) for the DIExpression when we see a
+ // Use a sentinel value (nullptr) for the DIExpression when we see a
// linked dbg.assign so that the next debug intrinsic will never match
// it (i.e. always treat linked dbg.assigns as if they're unique).
if (IsDbgValueKind)