Package: gdc
Version: 4.1.2-13

The attached program segfaults. This affects e.g. torustrooper but I guess any 
nontrivial D program is affected, too. Note that I'm running on PPC, which 
might be an important part in this. When run, it displays

 test1 foo
 Segmentation fault

When run in gdb, the backtrace is:

 #0  0x10022e9c in _d_arraycatT ()
 #1  0x10002a50 in _D4test4testFAaZv ()
 #2  0x10002adc in _Dmain ()
 #3  0x1002fef4 in _D9dgccmain211_d_run_mainUiPPaPUAAaZiZi2goMFZv ()
 #4  0x1002fffc in _d_run_main ()
 #5  0x10027f98 in main ()


I hope this is precise enough, I have little experience with D (below is my 
first program...) so just tell me if you need anything else.

cheers

Uli



// test.d
// compile with gdc -o test test.d
private import std.string;
private import std.stream;
private import std.cstream;
private import std.c.stdlib;

private void test( char[] msg) {
  derr.writeLine("test1 " ~ msg ~ "");
  derr.writeLine("test2 " ~ msg);
}

public int main(char[][] args) {
  test("foo");
  return 0;
}



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to