libiberty: Fix -Wimplicit-fallthrough warnings.
[deliverable/binutils-gdb.git] / libiberty / maint-tool
index d50f8959a388f70efe2c3653cf508808e8886a85..1c94cdc79cdabf41dd3d56d8d43ff4f86b6580d2 100644 (file)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl
 # -*- perl -*-
 
-#   Copyright (C) 2001, 2007, 2010
+#   Copyright (C) 2001, 2007, 2010, 2014
 #   Free Software Foundation
 #
 # This file is part of the libiberty library.
@@ -215,6 +215,9 @@ sub deps {
     $crule  = "\tif [ x\"\$(PICFLAG)\" != x ]; then \\\n";
     $crule .= "\t  \$(COMPILE.c) \$(PICFLAG) \$< -o pic/\$@; \\\n";
     $crule .= "\telse true; fi\n";
+    $crule .= "\tif [ x\"\$(NOASANFLAG)\" != x ]; then \\\n";
+    $crule .= "\t  \$(COMPILE.c) \$(PICFLAG) \$(NOASANFLAG) \$< -o noasan/\$@; \\\n";
+    $crule .= "\telse true; fi\n";
     $crule .= "\t\$(COMPILE.c) \$< \$(OUTPUT_OPTION)\n";
     $crule .= "\n";
 
This page took 0.031005 seconds and 4 git commands to generate.