changeset 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 0613413fa94c
children 93810d5d169d
files dmd/backend/iasm.d
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/dmd/backend/iasm.d	Tue Apr 13 15:34:41 2010 +0400
+++ b/dmd/backend/iasm.d	Tue Apr 13 15:36:12 2010 +0400
@@ -54,8 +54,8 @@
 
 extern (C) extern 
 {
-	int setjmp(jmp_buf env);
-	void longjmp(jmp_buf env, int value);
+	int setjmp(ref jmp_buf env);
+	void longjmp(ref jmp_buf env, int value);
 	
 	void cod3_set386();
 	code* genlinnum(code*, Srcpos);