This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: add overlooked test case


It appears that the test case mentioned in the ChangeLog entry for this patch

http://gcc.gnu.org/ml/gcc-patches/2007-01/msg00809.html

was never committed (probably just an oversight in failing to svn add it before hitting the commit button). It's still floating around in our locally modified tree, though; OK to commit it now?

-Sandra

2008-05-19  Sandra Loosemore  <sandra@codesourcery.com>

	gcc/testsuite/
	* gcc.c-torture/compile/20061214-1.c: New test.

Index: gcc.c-torture/compile/20061214-1.c
===================================================================
*** gcc.c-torture/compile/20061214-1.c	(revision 0)
--- gcc.c-torture/compile/20061214-1.c	(revision 0)
***************
*** 0 ****
--- 1,7 ----
+ typedef unsigned long long ull;
+ ull bar (void);
+ void foo (ull *x)
+ {
+   ull y = bar ();
+   *x += y >> 32;
+ }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]