OSDN Git Service

* gcc.c-torture/compile/20030704-1.c: Add a comment.
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 9 Jul 2003 03:02:17 +0000 (03:02 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 9 Jul 2003 03:02:17 +0000 (03:02 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69122 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/compile/20030704-1.c

index cbd7cae..4b578e6 100644 (file)
@@ -1,3 +1,7 @@
+2003-07-08  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * gcc.c-torture/compile/20030704-1.c: Add a comment.
+
 2003-07-08  Roger Sayle  <roger@eyesopen.com>
 
        PR c/11370
index b757f6d..101355c 100644 (file)
@@ -1,5 +1,11 @@
 /* PR c/11428.  */
 
+/* fold_single_bit_test() failed to return a tree of the type that the
+   outer expression was looking for.  Specifically, it returned a tree
+   whose type corresponded to QImode for !p->m, but the desired result
+   type was int, which corresponded to SImode.  emit_move_insn() later
+   tried to copy a reg:QI to reg:SI, causing an ICE.  */
+
 struct s {
   int m : 1;
 };