]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/opt-functions.awk
Update copyright years.
[thirdparty/gcc.git] / gcc / opt-functions.awk
index c1da80c648c31bbbef2724388b9e1ec33e0199a7..2f0442dc5633a0ca7e3e86c523f333d0ff847b66 100644 (file)
@@ -1,4 +1,4 @@
-#  Copyright (C) 2003-2019 Free Software Foundation, Inc.
+#  Copyright (C) 2003-2020 Free Software Foundation, Inc.
 #  Contributed by Kelley Cook, June 2004.
 #  Original code from Neil Booth, May 2003.
 #
@@ -105,7 +105,8 @@ function switch_flags (flags)
          test_flag("Undocumented", flags,  " | CL_UNDOCUMENTED") \
          test_flag("NoDWARFRecord", flags,  " | CL_NO_DWARF_RECORD") \
          test_flag("Warning", flags,  " | CL_WARNING") \
-         test_flag("(Optimization|PerFunction)", flags,  " | CL_OPTIMIZATION")
+         test_flag("(Optimization|PerFunction)", flags,  " | CL_OPTIMIZATION") \
+         test_flag("Param", flags,  " | CL_PARAMS")
        sub( "^0 \\| ", "", result )
        return result
 }