]> granicus.if.org Git - yasm/commitdiff
* x86bc.c (yasm_x86__ea_create_expr, yasm_x86__ea_create_imm): Initialize
authorPeter Johnson <peter@tortall.net>
Sun, 2 Oct 2005 02:30:08 +0000 (02:30 -0000)
committerPeter Johnson <peter@tortall.net>
Sun, 2 Oct 2005 02:30:08 +0000 (02:30 -0000)
ea.strong to 0.

svn path=/trunk/yasm/; revision=1259

modules/arch/x86/x86bc.c

index 298ae70027087d17e09838d02b901c166ae0596e..58479c70367ae3c139176ab5c3f2279803a948ed 100644 (file)
@@ -246,6 +246,7 @@ yasm_x86__ea_create_expr(yasm_arch *arch, yasm_expr *e)
     x86_ea->ea.disp = e;
     x86_ea->ea.len = 0;
     x86_ea->ea.nosplit = 0;
+    x86_ea->ea.strong = 0;
     x86_ea->ea.segreg = 0;
     x86_ea->modrm = 0;
     x86_ea->valid_modrm = 0;
@@ -273,6 +274,7 @@ yasm_x86__ea_create_imm(yasm_expr *imm, unsigned int im_len)
     x86_ea->ea.disp = imm;
     x86_ea->ea.len = (unsigned char)im_len;
     x86_ea->ea.nosplit = 0;
+    x86_ea->ea.strong = 0;
     x86_ea->ea.segreg = 0;
     x86_ea->modrm = 0;
     x86_ea->valid_modrm = 0;