]> ruderich.org/simon Gitweb - blhc/blhc.git/blobdiff - bin/blhc
Remove unnecessary if.
[blhc/blhc.git] / bin / blhc
index 91b6f3506ab2207c109da724a0149ebe216ee2e8..7416df6f69e6632263bda34ceff5994cf1dd905f 100755 (executable)
--- a/bin/blhc
+++ b/bin/blhc
@@ -48,7 +48,7 @@ my @source_preprocess_compile_cpp = (
     # C++
     qw( cc cp cxx cpp CPP c++ C ),
     # Objective-C++
-    qw( mm Mr),
+    qw( mm M ),
 );
 my @source_preprocess_compile = (
     # C
@@ -623,7 +623,6 @@ FILE: foreach my $file (@ARGV) {
                 next;
             }
 
-            if (not $continuation) {
                 # Use the complete line if a line continuation occurred.
                 if (defined $complete_line) {
                     $line = $complete_line;
@@ -656,7 +655,6 @@ FILE: foreach my $file (@ARGV) {
                 $harden_bindnow = 1 if any_flags_used($line, @def_ldflags_bindnow);
 
                 push @input, $line;
-            }
         }
     }