aboutsummaryrefslogtreecommitdiffstats
path: root/src/ortho/mcode/ortho_code-x86-abi.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/ortho/mcode/ortho_code-x86-abi.adb')
-rw-r--r--src/ortho/mcode/ortho_code-x86-abi.adb11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/ortho/mcode/ortho_code-x86-abi.adb b/src/ortho/mcode/ortho_code-x86-abi.adb
index aa6eb1913..b474f2bd6 100644
--- a/src/ortho/mcode/ortho_code-x86-abi.adb
+++ b/src/ortho/mcode/ortho_code-x86-abi.adb
@@ -202,10 +202,15 @@ package body Ortho_Code.X86.Abi is
Emits.Emit_Var_Decl (Decl);
end Expand_Var_Decl;
- procedure Expand_Const_Value (Decl : O_Dnode; Val : O_Cnode) is
+ procedure Expand_Var_Zero (Decl : O_Dnode) is
begin
- Emits.Emit_Const_Value (Decl, Val);
- end Expand_Const_Value;
+ Emits.Emit_Var_Zero (Decl);
+ end Expand_Var_Zero;
+
+ procedure Expand_Init_Value (Decl : O_Dnode; Val : O_Cnode) is
+ begin
+ Emits.Emit_Init_Value (Decl, Val);
+ end Expand_Init_Value;
procedure Disp_Label (Label : O_Enode)
is