Skip to content

Commit

Permalink
fix kcc script merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Dwight Guth committed Apr 28, 2020
1 parent 0de15eb commit 63b33c7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/kcc
Original file line number Diff line number Diff line change
Expand Up @@ -358,16 +358,16 @@ sub makeOptions {
if (arg('-funresolved-symbols=')) {
my $string_arg = arg('-funresolved-symbols=');
if ($string_arg eq 'ignore-all') {
push(@options, "`UnresolvedSymbols`(`IgnoreAll`(.KList))");
push(@options, "LblUnresolvedSymbols{}(LblIgnoreAll{}())");
} elsif ($string_arg eq 'warn-all') {
push(@options, "`UnresolvedSymbols`(`WarnAll`(.KList))");
push(@options, "LblUnresolvedSymbols{}(LblWarnAll{}())");
} elsif ($string_arg eq 'report-all') {
push(@options, "`UnresolvedSymbols`(`ReportAll`(.KList))");
push(@options, "LblUnresolvedSymbols{}(LblReportAll{}())");
} elsif ($string_arg eq 'warn-unreachable') {
push(@options, "`UnresolvedSymbols`(`WarnUnreachable`(.KList))");
push(@options, "LblUnresolvedSymbols{}(LblWarnUnreachable{}())");
}
} else {
push(@options, "`UnresolvedSymbols`(`WarnUnreachable`(.KList))");
push(@options, "LblUnresolvedSymbols{}(LblWarnUnreachable{}())");
}

for (breakpoints()) {
Expand Down

0 comments on commit 63b33c7

Please sign in to comment.