]> gcc.gnu.org Git - gcc.git/commitdiff
common.opt (flto-report): Do not mark as Optimization.
authorRichard Biener <rguenth@gcc.gnu.org>
Fri, 4 May 2012 11:08:42 +0000 (11:08 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Fri, 4 May 2012 11:08:42 +0000 (11:08 +0000)
2012-05-04  Richard Guenther  <rguenther@suse.de>

* common.opt (flto-report): Do not mark as Optimization.

lto/
* lang.opt (fwpa): Do not mark as Optimization.
(fltrans): Likewise.

* gcc.dg/lto/pr53214_0.c: New testcase.

From-SVN: r187151

gcc/ChangeLog
gcc/common.opt
gcc/lto/ChangeLog
gcc/lto/lang.opt
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/lto/pr53214_0.c [new file with mode: 0644]

index 783ee345d3ebe2a2a7903ce26aceaa5a4cacde4d..63ec602a300a356248eb0adee41d1694b4572d82 100644 (file)
@@ -1,3 +1,7 @@
+2012-05-04  Richard Guenther  <rguenther@suse.de>
+
+       * common.opt (flto-report): Do not mark as Optimization.
+
 2012-05-04  Eric Botcazou  <ebotcazou@adacore.com>
 
        PR target/48496
index cc5797606ad4c925311ec22bf70c3d161710244a..c25713b31a187e9b4cd431da52c6999006e62ad9 100644 (file)
@@ -1424,7 +1424,7 @@ Common Joined RejectNegative UInteger Var(flag_lto_compression_level) Init(-1)
 -flto-compression-level=<number>       Use zlib compression level <number> for IL
 
 flto-report
-Common Report Var(flag_lto_report) Init(0) Optimization
+Common Report Var(flag_lto_report) Init(0)
 Report various link-time optimization statistics
 
 fmath-errno
index f9c5d3028bbe9e154c8c6fcc4ea8960036bc4f6b..8c1d9013edb8ad72fb9f26be4b1ba9f9e179999a 100644 (file)
@@ -1,7 +1,13 @@
+2012-05-04  Richard Guenther  <rguenther@suse.de>
+
+       * lang.opt (fwpa): Do not mark as Optimization.
+       (fltrans): Likewise.
+
 2012-04-30  Jan Hubicka  <jh@suse.cz>
 
        * lto.c (lto_main): Use compile ().
-       * lto-partition.c (partition_cgraph_node_p): Use symtab_used_from_object_file_p.
+       * lto-partition.c (partition_cgraph_node_p): Use
+       symtab_used_from_object_file_p.
        (partition_varpool_node_p): Likewise.
 
 2012-04-20  Jan Hubicka  <jh@suse.cz>
index 82857fa604b41b54519382c233c22296f165c1d8..f5e9e39026d3f30f5a1792718b854d3bc3f62556 100644 (file)
@@ -25,7 +25,7 @@ Language
 LTO
 
 fltrans
-LTO Report Var(flag_ltrans) Optimization
+LTO Report Var(flag_ltrans)
 Run the link-time optimizer in local transformation (LTRANS) mode.
 
 fltrans-output-list=
@@ -33,7 +33,7 @@ LTO Joined Var(ltrans_output_list)
 Specify a file to which a list of files output by LTRANS is written.
 
 fwpa
-LTO Driver Report Var(flag_wpa) Optimization
+LTO Driver Report Var(flag_wpa)
 Run the link-time optimizer in whole program analysis (WPA) mode.
 
 fresolution=
index 7036381b0acd07ff663c2b8e88eb72f52dedf8b6..581b8b87287c48b1b7e16845e98b956496b118f8 100644 (file)
@@ -1,3 +1,7 @@
+2012-05-04  Richard Guenther  <rguenther@suse.de>
+
+       * gcc.dg/lto/pr53214_0.c: New testcase.
+
 2012-05-04  Eric Botcazou  <ebotcazou@adacore.com>
 
        * gcc.target/ia64/pr48496.c: New test.
diff --git a/gcc/testsuite/gcc.dg/lto/pr53214_0.c b/gcc/testsuite/gcc.dg/lto/pr53214_0.c
new file mode 100644 (file)
index 0000000..e76d4da
--- /dev/null
@@ -0,0 +1,8 @@
+/* { dg-lto-do run } */
+
+double a(double) __attribute__ ((optimize(1), used));
+double a(double r) 
+{ 
+  return r;
+}
+int main () { return 0; }
This page took 0.118086 seconds and 5 git commands to generate.