diff mbox series

[OBVIOUS] Add missing Optimization attribute.

Message ID 2bcef64c-5904-2b82-8a82-472266824a2f@suse.cz
State New
Headers show
Series [OBVIOUS] Add missing Optimization attribute. | expand

Commit Message

Martin Liška July 9, 2018, 8:11 a.m. UTC
Hi.

I'm putting back what I accidentally removed.

Martin

gcc/ChangeLog:

2018-07-09  Martin Liska  <mliska@suse.cz>

	* common.opt: Add back wrongly removed attribute.
---
 gcc/common.opt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Andre Vieira (lists) July 10, 2018, 8:01 a.m. UTC | #1
On 09/07/18 09:11, Martin Liška wrote:
> Hi.
> 
> I'm putting back what I accidentally removed.
> 
> Martin
> 
> gcc/ChangeLog:
> 
> 2018-07-09  Martin Liska  <mliska@suse.cz>
> 
> 	* common.opt: Add back wrongly removed attribute.
> ---
>  gcc/common.opt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> 
Hi Martin,

Re-enabling this option made the test for warnings in gcc.dg/pr84100.c fail.

Maybe the test needs some adjusting?

Cheers,
Andre
Martin Liška July 10, 2018, 2:48 p.m. UTC | #2
On 07/10/2018 10:01 AM, Andre Vieira (lists) wrote:
> On 09/07/18 09:11, Martin Liška wrote:
>> Hi.
>>
>> I'm putting back what I accidentally removed.
>>
>> Martin
>>
>> gcc/ChangeLog:
>>
>> 2018-07-09  Martin Liska  <mliska@suse.cz>
>>
>> 	* common.opt: Add back wrongly removed attribute.
>> ---
>>  gcc/common.opt | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>>
> Hi Martin,
> 
> Re-enabling this option made the test for warnings in gcc.dg/pr84100.c fail.
> 
> Maybe the test needs some adjusting?
> 
> Cheers,
> Andre
> 

Following patch fixes that. I've tested the patch and I'm going to install it.

Martin
From d375378fc6c61e0c279a75565cc2195b4fa54fab Mon Sep 17 00:00:00 2001
From: marxin <mliska@suse.cz>
Date: Tue, 10 Jul 2018 16:42:23 +0200
Subject: [PATCH] Change dg-warning to db-bogus in a test-case (PR
 testsuite/86445).

gcc/testsuite/ChangeLog:

2018-07-10  Martin Liska  <mliska@suse.cz>

        PR testsuite/86445
	* gcc.dg/pr84100.c: Change it back to dg-bogus.
---
 gcc/testsuite/gcc.dg/pr84100.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/testsuite/gcc.dg/pr84100.c b/gcc/testsuite/gcc.dg/pr84100.c
index 676d0c78dea..86fbc4f7a3e 100644
--- a/gcc/testsuite/gcc.dg/pr84100.c
+++ b/gcc/testsuite/gcc.dg/pr84100.c
@@ -8,7 +8,7 @@ __attribute__((optimize ("align-loops=16", "align-jumps=16",
 			 "align-labels=16", "align-functions=16")))
 void
 foo (void)
-{			/* { dg-warning "bad option" } */
+{			/* { dg-bogus "bad option" } */
   for (int i = 0; i < 1024; ++i)
     bar ();
 }
diff mbox series

Patch

diff --git a/gcc/common.opt b/gcc/common.opt
index 963c37f04cd..c29abdb5cb1 100644
--- a/gcc/common.opt
+++ b/gcc/common.opt
@@ -987,7 +987,7 @@  Common Report Var(flag_align_loops) Optimization
 Align the start of loops.
 
 falign-loops=
-Common RejectNegative Joined Var(str_align_loops)
+Common RejectNegative Joined Var(str_align_loops) Optimization
 
 fargument-alias
 Common Ignore