summaryrefslogtreecommitdiff
path: root/compiler-rt/test/profile/instrprof-thinlto-indirect-call-promotion.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'compiler-rt/test/profile/instrprof-thinlto-indirect-call-promotion.cpp')
-rw-r--r--compiler-rt/test/profile/instrprof-thinlto-indirect-call-promotion.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/profile/instrprof-thinlto-indirect-call-promotion.cpp b/compiler-rt/test/profile/instrprof-thinlto-indirect-call-promotion.cpp
index d361186cf26a..4509c0149bdb 100644
--- a/compiler-rt/test/profile/instrprof-thinlto-indirect-call-promotion.cpp
+++ b/compiler-rt/test/profile/instrprof-thinlto-indirect-call-promotion.cpp
@@ -80,7 +80,7 @@ static void callee0() {}
void callee1() {}
typedef void (*FPT)();
FPT calleeAddrs[] = {callee0, callee1};
-// `global_func`` might call one of two indirect callees. callee0 has internal
+// `global_func` might call one of two indirect callees. callee0 has internal
// linkage and callee1 has external linkage.
void global_func() {
FPT fp = calleeAddrs[0];