public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/57853] New: pointer arithmetic on arrays
@ 2013-07-08 20:03 brodhow at all2easy dot net
  2013-07-08 20:10 ` [Bug c/57853] " brodhow at all2easy dot net
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: brodhow at all2easy dot net @ 2013-07-08 20:03 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57853

            Bug ID: 57853
           Summary: pointer arithmetic on arrays
           Product: gcc
           Version: 4.6.3
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: brodhow at all2easy dot net

This C code:

#include <stdio.h>

int main() { 
 char *arr [2][3]={{"as","df","ce"},{"me","yu","we"}};
 char *arr2 = NULL;

puts(*arr[0]);//works fine
puts(*arr[1]);//works fine
printf("%c\n",*++arr[0][0]);//works fine and prints s

printf("%s\n", *arr[0]);

int i = 0, j = 0;

 for (i=0; i<2; ++i)
   for (j=0; j<3; ++j)
     printf("%s ", arr[i][j]); 

 printf("\n");
}

outputs:

as
me
s
s
s df ce me yu we 

 where the 'a' in "as" (arr[0]) is being wiped out! After the
"printf("%c\n",*++arr[0][0]);" statement! Or, the string arr's head is being
reassigned to the new value after the "*++arr[0][0]" operation which is 's'!

 the output should be:

as
me
s
as
as df ce me yu we 

 where the 'a' in "as" is present, afterwards!

 The pointer arithmetic here to get 's' to output is producing this side effect 
of wiping out the 'a' in "as", arr[0].  Is "*++arr[0][0]" valid for getting 's'
in "as"?  If so, then this side effect is happening! For real in any legacy C
code with similar syntax!  When said C code is recompiled by the current gcc
compiler!  Note that g++ does the same thing here too, on this code.


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug c/57853] pointer arithmetic on arrays
  2013-07-08 20:03 [Bug c/57853] New: pointer arithmetic on arrays brodhow at all2easy dot net
@ 2013-07-08 20:10 ` brodhow at all2easy dot net
  2013-07-08 20:17 ` pinskia at gcc dot gnu.org
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: brodhow at all2easy dot net @ 2013-07-08 20:10 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57853

--- Comment #1 from Howard Brodale <brodhow at all2easy dot net> ---
gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.6/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro
4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs
--enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-4.6 --enable-shared --enable-linker-build-id
--with-system-zlib --libexecdir=/usr/lib --without-included-gettext
--enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6
--libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu
--enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object
--enable-plugin --enable-objc-gc --enable-targets=all --disable-werror
--with-arch-32=i686 --with-tune=generic --enable-checking=release
--build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
Thread model: posix
gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug c/57853] pointer arithmetic on arrays
  2013-07-08 20:03 [Bug c/57853] New: pointer arithmetic on arrays brodhow at all2easy dot net
  2013-07-08 20:10 ` [Bug c/57853] " brodhow at all2easy dot net
@ 2013-07-08 20:17 ` pinskia at gcc dot gnu.org
  2013-07-08 22:06 ` brodhow at all2easy dot net
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: pinskia at gcc dot gnu.org @ 2013-07-08 20:17 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57853

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
++arr[0][0]
Does:
(arr[0][0] += 1)
So it increments the char pointer so instead of pointing to &"as"[0], it points
to &"as"[1].


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug c/57853] pointer arithmetic on arrays
  2013-07-08 20:03 [Bug c/57853] New: pointer arithmetic on arrays brodhow at all2easy dot net
  2013-07-08 20:10 ` [Bug c/57853] " brodhow at all2easy dot net
  2013-07-08 20:17 ` pinskia at gcc dot gnu.org
@ 2013-07-08 22:06 ` brodhow at all2easy dot net
  2013-07-08 22:08 ` pinskia at gcc dot gnu.org
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: brodhow at all2easy dot net @ 2013-07-08 22:06 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57853

Howard Brodale <brodhow at all2easy dot net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|INVALID                     |---

--- Comment #3 from Howard Brodale <brodhow at all2easy dot net> ---
++arr[0][0] does work for printing out the second character 's'. But, then that
pointer arithmetic operation has the side effect of wiping out the 'a' from
"as". Because when 

for (i=0; i<2; ++i)
   for (j=0; j<3; ++j)
     printf("%s ", arr[i][j]); 

runs, it just prints 's' for where "as" should be.  The 'a' is now gone or
destroyed by the previous ++arr[0][0] operation. Wgen that "++" is removed then
"as" prints from those for loops after where the printf with the "++" was.

 So, this bug is not invalid! And, is not resolved!


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug c/57853] pointer arithmetic on arrays
  2013-07-08 20:03 [Bug c/57853] New: pointer arithmetic on arrays brodhow at all2easy dot net
                   ` (2 preceding siblings ...)
  2013-07-08 22:06 ` brodhow at all2easy dot net
@ 2013-07-08 22:08 ` pinskia at gcc dot gnu.org
  2013-07-08 22:10 ` brodhow at all2easy dot net
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: pinskia at gcc dot gnu.org @ 2013-07-08 22:08 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57853

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
(In reply to Howard Brodale from comment #3)
> ++arr[0][0] does work for printing out the second character 's'.

++arr[0][0] increments arr[0][0] like you said.  It changes the value of what
is contained in arr[0][0] .


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug c/57853] pointer arithmetic on arrays
  2013-07-08 20:03 [Bug c/57853] New: pointer arithmetic on arrays brodhow at all2easy dot net
                   ` (3 preceding siblings ...)
  2013-07-08 22:08 ` pinskia at gcc dot gnu.org
@ 2013-07-08 22:10 ` brodhow at all2easy dot net
  2013-07-08 22:13 ` brodhow at all2easy dot net
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: brodhow at all2easy dot net @ 2013-07-08 22:10 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57853

Howard Brodale <brodhow at all2easy dot net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|INVALID                     |---

--- Comment #5 from Howard Brodale <brodhow at all2easy dot net> ---
"*arr[0][0] += 1" generates a segmentation fault when run.  That is not vaild
to get 's' to output.


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug c/57853] pointer arithmetic on arrays
  2013-07-08 20:03 [Bug c/57853] New: pointer arithmetic on arrays brodhow at all2easy dot net
                   ` (4 preceding siblings ...)
  2013-07-08 22:10 ` brodhow at all2easy dot net
@ 2013-07-08 22:13 ` brodhow at all2easy dot net
  2013-07-08 22:15 ` brodhow at all2easy dot net
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: brodhow at all2easy dot net @ 2013-07-08 22:13 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57853

--- Comment #6 from Howard Brodale <brodhow at all2easy dot net> ---
"*++arr[0][0]" is not supposed to change the array arr!  It is supposed to take
the source, change it for later use and leave the source unchanged!  That the
way pointer arithmetic works.  It never has changed the source ever, until now.
Where "as" is still supposed to output we get only 's' now.


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug c/57853] pointer arithmetic on arrays
  2013-07-08 20:03 [Bug c/57853] New: pointer arithmetic on arrays brodhow at all2easy dot net
                   ` (5 preceding siblings ...)
  2013-07-08 22:13 ` brodhow at all2easy dot net
@ 2013-07-08 22:15 ` brodhow at all2easy dot net
  2013-07-08 22:18 ` pinskia at gcc dot gnu.org
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: brodhow at all2easy dot net @ 2013-07-08 22:15 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57853

--- Comment #7 from Howard Brodale <brodhow at all2easy dot net> ---
we get only 's' in a subsequent printf that runs after that "++" statements.
>From that next printf "as" should aappear but, it has been changed to only 's',
by the "++" operation!


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug c/57853] pointer arithmetic on arrays
  2013-07-08 20:03 [Bug c/57853] New: pointer arithmetic on arrays brodhow at all2easy dot net
                   ` (6 preceding siblings ...)
  2013-07-08 22:15 ` brodhow at all2easy dot net
@ 2013-07-08 22:18 ` pinskia at gcc dot gnu.org
  2013-07-09  3:08 ` brodhow at all2easy dot net
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: pinskia at gcc dot gnu.org @ 2013-07-08 22:18 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57853

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #8 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
>"*++arr[0][0]" is not supposed to change the array arr! 

At this point I am going to say you don't know C and should ask on a C mailing
list learning C.

*++arr[0][0] does the following:
++arr[0][0]
And then deferences that value (which turns into 's').


If you only want (arr[0][0])[1] then use that or *(arr[0][0]+1) rather than ++.


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug c/57853] pointer arithmetic on arrays
  2013-07-08 20:03 [Bug c/57853] New: pointer arithmetic on arrays brodhow at all2easy dot net
                   ` (7 preceding siblings ...)
  2013-07-08 22:18 ` pinskia at gcc dot gnu.org
@ 2013-07-09  3:08 ` brodhow at all2easy dot net
  2013-07-09  4:15 ` brodhow at all2easy dot net
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: brodhow at all2easy dot net @ 2013-07-09  3:08 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57853

Howard Brodale <brodhow at all2easy dot net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|INVALID                     |---

--- Comment #9 from Howard Brodale <brodhow at all2easy dot net> ---
(In reply to Andrew Pinski from comment #8)
> >"*++arr[0][0]" is not supposed to change the array arr! 
> 
> At this point I am going to say you don't know C and should ask on a C
> mailing list learning C.
> 
> *++arr[0][0] does the following:
> ++arr[0][0]
> And then deferences that value (which turns into 's').
> 
> 
> If you only want (arr[0][0])[1] then use that or *(arr[0][0]+1) rather than
> ++.

That is not the issue. With "*++arr[0][0]" we want to see 's'. The problem is
after that "++" operation when we want to output the array arr's values again
that the arr[0][0] is no longer "as" but, only "s" now. That is seen in the
nested for loops, after the "++" operation, above. When the "++" operation is
removed then in the for loops, a[0][0] is "as"; in the for loop's printf.  You
are not looking at the for loops printf()!  With the "++" operstion then, the
printf() in the for loops outputs "s" for where "as" was.

 This means that a[0][0] is being treated as a Left Hand value of an equal sign
where a[0][0]++ value is now the right hand side of that equal sign.  Where
a[0][0] is being set equal to "s" now.  This process has never existed before
in C when doing pointer arithmetic (++) on array elements and such.  Where
performing ++ptr would not just result in the next datatype's value normally.
But, here a --ptr would then render the initial value, again. Or, where *ptr
remained unchanged, itself.  

  Millions of lines of legacy C code has this same pointer arithmetic in the
expectation that it does not change the value that the pointer points to, for
later reference.  Or, ++prt does not change the value that a[0][0] is but, here
"++" is changing what a[0] is, later.  Before, a[0] is set to "as" in the for
loop's printf after where "++" was, above. After the "++" operation is added,
a[0] is now being set to just "s" or the 'a' has been wiped out, lost or
destroyed. As seen in the later printf, in the for loops.

 So, see what the for loop's printf outputs for a[0][0] ("as") without the "++"
operation above. Then, add "++" and see what the same for loop's printf outputs
("s").  That value in the array was changed by the pointer arithmetic! Or,
++ptr is not equivalent to ptr = ++pter! But, that is whats happening here! As
seen in the for loop's printf for array arr!

 Do you agree that ++ptr is not equivalent to ptr = ++pter? If not then you
don't see that that this is whats very wrong here!  Pointer arithmetic does not
make the value a pointer points to a Left Hand side value, in this equality
expression!  No such equality expression should exist here!


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug c/57853] pointer arithmetic on arrays
  2013-07-08 20:03 [Bug c/57853] New: pointer arithmetic on arrays brodhow at all2easy dot net
                   ` (8 preceding siblings ...)
  2013-07-09  3:08 ` brodhow at all2easy dot net
@ 2013-07-09  4:15 ` brodhow at all2easy dot net
  2013-07-09  4:24 ` pinskia at gcc dot gnu.org
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: brodhow at all2easy dot net @ 2013-07-09  4:15 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57853

--- Comment #10 from Howard Brodale <brodhow at all2easy dot net> ---
Should we expect to see "as" in the for loop's printf, for arr[0][0]?  YES!
And, we do when the pointer arithmetic is NOT being done, above.

But, something changed arr[0] to "s" only!  What did that?

Did I change arr[0] like where I specified arr[0] = "s";?  NO! But, something
did!

Should the C code set arr[0] = "s"? NO! But, it did set a[0] to "s", only!

Thats whats happening, erroneously! For when we output array arr again or later
or after the pointer arithmetic operation is shown THEN, only "s" appears where
"as" used to be! And, also for every where else a[0] is being printed! After
the pointer arithmetic operation.

 This "s" problemm is being shown in the for loop's printf and every where else
a[0] is being outputed, AFTER the "++" operation. Where another "++" is not!
But, "a" is still not showing up, AFTER the initial "++" operation.

 Look at all the subsequent printfs, AFTER the "++" operation.  Where "as" used
to be now only "s" is being outputed.

 Do you see where the issue is first appearing? Then, by what C code statement
the issue is being done by?  Though "*++arr[0][0]" does output 's' (correctly);
something else is being done that should not be done! Setting *arr[0] EQUAL TO
"s"! Which is wrong!


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug c/57853] pointer arithmetic on arrays
  2013-07-08 20:03 [Bug c/57853] New: pointer arithmetic on arrays brodhow at all2easy dot net
                   ` (9 preceding siblings ...)
  2013-07-09  4:15 ` brodhow at all2easy dot net
@ 2013-07-09  4:24 ` pinskia at gcc dot gnu.org
  2013-07-09  6:52 ` brodhow at all2easy dot net
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: pinskia at gcc dot gnu.org @ 2013-07-09  4:24 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57853

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #11 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
++v mean pre-increment v.  That means store the incremented v back into v.

If you don't understand that, then I cannot help you.  Please stop opening an
already closed bug.

This is not the correct forum to learn C, please take this discussion somewhere
else.


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug c/57853] pointer arithmetic on arrays
  2013-07-08 20:03 [Bug c/57853] New: pointer arithmetic on arrays brodhow at all2easy dot net
                   ` (10 preceding siblings ...)
  2013-07-09  4:24 ` pinskia at gcc dot gnu.org
@ 2013-07-09  6:52 ` brodhow at all2easy dot net
  2013-07-09  7:15 ` schwab@linux-m68k.org
  2013-07-09 10:28 ` redi at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: brodhow at all2easy dot net @ 2013-07-09  6:52 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57853

Howard Brodale <brodhow at all2easy dot net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|INVALID                     |FIXED

--- Comment #12 from Howard Brodale <brodhow at all2easy dot net> ---
"store the incremented v back into v" is not quite right either. The pointer
arithmetic "*++arr[0][0]" is incrementing the head pointer of the string array
element one char past 'a' and not actually storing the shortened string back in
there.  If it was storing the shortened string there then the 'a' would be lost
or written over which it is not.

printf("%c\n",*++arr[0][0]);//works fine and prints s
printf("%c\n",*--arr[0][0]);//works fine does print a

as
me
s <- the 1st "++"; incrementing past 'a'
a <- the first "--"; dcrementing back to 'a'
as <- "as" prints now as expected
as df ce me yu we <- and here again, too, "as" is showing as expected. Take out
the "--" operation and these "as"s will be "s"s.

'a' is not lost nor written over by any storing back into v, here or no storing
is going on.  Just pointer that array arr gets moved over to point at the next
character.

char *arr2 = "this is a test\n";
int len_arr2 = 0;

len_arr2 = strlen(++arr2);
printf("length of arr2 is %i\n", len_arr2);
printf("%c\n", *arr2--);
len_arr2 = strlen(arr2);
printf("length of arr2 is %i\n", len_arr2);
puts(arr2);

outputs:

length of arr2 is 14 <- "++"; moving past the 't', one character less in string
his is a test <- 't' is missing now

length of arr2 is 15 <- "--"; moving back over the 't', one character more
this is a test <- 't' is back now; if storing in v happened then 't' would've
been lost and would be not recoverable.

Now, I have also recovered more knowledge about pointer arithmentic, with
character strings.  'a' is not being destoyed or lost in the original context.
Its just being ignored.


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug c/57853] pointer arithmetic on arrays
  2013-07-08 20:03 [Bug c/57853] New: pointer arithmetic on arrays brodhow at all2easy dot net
                   ` (11 preceding siblings ...)
  2013-07-09  6:52 ` brodhow at all2easy dot net
@ 2013-07-09  7:15 ` schwab@linux-m68k.org
  2013-07-09 10:28 ` redi at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: schwab@linux-m68k.org @ 2013-07-09  7:15 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57853

Andreas Schwab <schwab@linux-m68k.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|FIXED                       |INVALID


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug c/57853] pointer arithmetic on arrays
  2013-07-08 20:03 [Bug c/57853] New: pointer arithmetic on arrays brodhow at all2easy dot net
                   ` (12 preceding siblings ...)
  2013-07-09  7:15 ` schwab@linux-m68k.org
@ 2013-07-09 10:28 ` redi at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: redi at gcc dot gnu.org @ 2013-07-09 10:28 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57853

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|critical                    |normal


^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2013-07-09 10:28 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-08 20:03 [Bug c/57853] New: pointer arithmetic on arrays brodhow at all2easy dot net
2013-07-08 20:10 ` [Bug c/57853] " brodhow at all2easy dot net
2013-07-08 20:17 ` pinskia at gcc dot gnu.org
2013-07-08 22:06 ` brodhow at all2easy dot net
2013-07-08 22:08 ` pinskia at gcc dot gnu.org
2013-07-08 22:10 ` brodhow at all2easy dot net
2013-07-08 22:13 ` brodhow at all2easy dot net
2013-07-08 22:15 ` brodhow at all2easy dot net
2013-07-08 22:18 ` pinskia at gcc dot gnu.org
2013-07-09  3:08 ` brodhow at all2easy dot net
2013-07-09  4:15 ` brodhow at all2easy dot net
2013-07-09  4:24 ` pinskia at gcc dot gnu.org
2013-07-09  6:52 ` brodhow at all2easy dot net
2013-07-09  7:15 ` schwab@linux-m68k.org
2013-07-09 10:28 ` redi at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).