diff options
author | Lang Hames <lhames@gmail.com> | 2021-12-15 16:58:43 +1100 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2021-12-16 19:46:51 +1100 |
commit | 3eeeb6ec933366a1b4d5482f07ddc724001a6079 (patch) | |
tree | d63d9a91d21c99a2edc0c091958416c4fefb0329 /llvm | |
parent | 7ba32b12de6ded9c8b12fa2946e481d46d1f22f7 (diff) | |
download | llvm-3eeeb6ec933366a1b4d5482f07ddc724001a6079.zip llvm-3eeeb6ec933366a1b4d5482f07ddc724001a6079.tar.gz llvm-3eeeb6ec933366a1b4d5482f07ddc724001a6079.tar.bz2 |
[llvm-jitlink] Fix a typo.
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/tools/llvm-jitlink/llvm-jitlink.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-jitlink/llvm-jitlink.cpp b/llvm/tools/llvm-jitlink/llvm-jitlink.cpp index 366944b..aa70c79 100644 --- a/llvm/tools/llvm-jitlink/llvm-jitlink.cpp +++ b/llvm/tools/llvm-jitlink/llvm-jitlink.cpp @@ -270,7 +270,7 @@ static Error applyHarnessPromotions(Session &S, LinkGraph &G) { if (S.HarnessFiles.empty() || S.HarnessFiles.count(G.getName())) return Error::success(); - LLVM_DEBUG(dbgs() << "Appling promotions to graph " << G.getName() << "\n"); + LLVM_DEBUG(dbgs() << "Applying promotions to graph " << G.getName() << "\n"); // If this graph is part of the test then promote any symbols referenced by // the harness to default scope, remove all symbols that clash with harness |