Commit 47bb500f by Diego Novillo Committed by Diego Novillo

pr17252.c: Use post-increment to change what 'a' is pointing to.


	* gcc.c-torture/execute/pr17252.c: Use post-increment to
	change what 'a' is pointing to.

From-SVN: r87642
parent 788bb47d
2004-09-17 Diego Novillo <dnovillo@redhat.com>
* gcc.c-torture/execute/pr17252.c: Use post-increment to
change what 'a' is pointing to.
2004-09-17 Mark Mitchell <mark@codesourcery.com> 2004-09-17 Mark Mitchell <mark@codesourcery.com>
PR c++/16002 PR c++/16002
......
...@@ -9,7 +9,7 @@ main () ...@@ -9,7 +9,7 @@ main ()
a = (char *)&a; a = (char *)&a;
/* Change what 'a' is pointing to. */ /* Change what 'a' is pointing to. */
a[0] = 0; a[0]++;
/* If a's memory tag does not contain 'a' in its alias set, we will /* If a's memory tag does not contain 'a' in its alias set, we will
think that this predicate is superfluous and change it to think that this predicate is superfluous and change it to
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment