diff options
author | Andrew Pinski <apinski@marvell.com> | 2023-08-25 19:10:52 -0700 |
---|---|---|
committer | Andrew Pinski <apinski@marvell.com> | 2023-08-25 19:14:25 -0700 |
commit | 3e8db3739c913575428a7e36ad6fd1a7571552ce (patch) | |
tree | ac929f8f9941050bcf6de689dfd695334a8089d5 /gcc | |
parent | b88636400f0e8e9c4155f802475e65018a4425d2 (diff) | |
download | gcc-3e8db3739c913575428a7e36ad6fd1a7571552ce.zip gcc-3e8db3739c913575428a7e36ad6fd1a7571552ce.tar.gz gcc-3e8db3739c913575428a7e36ad6fd1a7571552ce.tar.bz2 |
Fix phi-opt-34.c testcase
Somehow when I was testing the new testcase, it was working but
when I re-ran the full testsuite it was not. Anyways the issue
was just a simple space before the `}` for dg-options directive.
Committed as obvious.
gcc/testsuite/ChangeLog:
* gcc.dg/tree-ssa/phi-opt-34.c: Fix dg-options directive.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.dg/tree-ssa/phi-opt-34.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/phi-opt-34.c b/gcc/testsuite/gcc.dg/tree-ssa/phi-opt-34.c index 157c3ea..6105423 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/phi-opt-34.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/phi-opt-34.c @@ -1,7 +1,7 @@ /* { dg-do compile } */ /* Disable early phiopt1 as early ccp1 does not export non-zero bits so at the point of phiopt1, we don't know that a is [0,1] range */ -/* { dg-options "-O1 -fdisable-tree-phiopt1 -fdump-tree-phiopt2-folding"} */ +/* { dg-options "-O1 -fdisable-tree-phiopt1 -fdump-tree-phiopt2-folding" } */ unsigned f(unsigned a) { |