Skip to content

Commit 63b33c7

Browse files
author
Dwight Guth
committed
fix kcc script merge conflict
1 parent 0de15eb commit 63b33c7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scripts/kcc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -358,16 +358,16 @@ sub makeOptions {
358358
if (arg('-funresolved-symbols=')) {
359359
my $string_arg = arg('-funresolved-symbols=');
360360
if ($string_arg eq 'ignore-all') {
361-
push(@options, "`UnresolvedSymbols`(`IgnoreAll`(.KList))");
361+
push(@options, "LblUnresolvedSymbols{}(LblIgnoreAll{}())");
362362
} elsif ($string_arg eq 'warn-all') {
363-
push(@options, "`UnresolvedSymbols`(`WarnAll`(.KList))");
363+
push(@options, "LblUnresolvedSymbols{}(LblWarnAll{}())");
364364
} elsif ($string_arg eq 'report-all') {
365-
push(@options, "`UnresolvedSymbols`(`ReportAll`(.KList))");
365+
push(@options, "LblUnresolvedSymbols{}(LblReportAll{}())");
366366
} elsif ($string_arg eq 'warn-unreachable') {
367-
push(@options, "`UnresolvedSymbols`(`WarnUnreachable`(.KList))");
367+
push(@options, "LblUnresolvedSymbols{}(LblWarnUnreachable{}())");
368368
}
369369
} else {
370-
push(@options, "`UnresolvedSymbols`(`WarnUnreachable`(.KList))");
370+
push(@options, "LblUnresolvedSymbols{}(LblWarnUnreachable{}())");
371371
}
372372

373373
for (breakpoints()) {

0 commit comments

Comments
 (0)