comparison dmd/backend/iasm.d @ 28:c369e9924151

Updated setjmp/longjmp prototypes to reflect recent static arrays change (they are now passed by value by default).
author korDen
date Tue, 13 Apr 2010 15:36:12 +0400
parents 3f834bed4f13
children f95140b40251
comparison
equal deleted inserted replaced
27:0613413fa94c 28:c369e9924151
52 52
53 alias int[10] jmp_buf; 53 alias int[10] jmp_buf;
54 54
55 extern (C) extern 55 extern (C) extern
56 { 56 {
57 int setjmp(jmp_buf env); 57 int setjmp(ref jmp_buf env);
58 void longjmp(jmp_buf env, int value); 58 void longjmp(ref jmp_buf env, int value);
59 59
60 void cod3_set386(); 60 void cod3_set386();
61 code* genlinnum(code*, Srcpos); 61 code* genlinnum(code*, Srcpos);
62 code *code_calloc(); 62 code *code_calloc();
63 63