aboutsummaryrefslogtreecommitdiffstats
path: root/powerpc/Asm.v
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2016-03-15 11:00:24 +0100
committerBernhard Schommer <bernhardschommer@gmail.com>2016-03-15 11:00:24 +0100
commit34a7ec51c1f1bbfeb973f8e295ac81b65c70251c (patch)
treeb5d1de65396c1bd08e44c282ffd59ab0ba876e8f /powerpc/Asm.v
parentbac2a0854ea51217690bc6f225da62053ed7ac06 (diff)
downloadcompcert-34a7ec51c1f1bbfeb973f8e295ac81b65c70251c.tar.gz
compcert-34a7ec51c1f1bbfeb973f8e295ac81b65c70251c.zip
Revert "Removed unused parameter from is_small/rel_data."
This reverts commit bac2a0854ea51217690bc6f225da62053ed7ac06.
Diffstat (limited to 'powerpc/Asm.v')
-rw-r--r--powerpc/Asm.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/powerpc/Asm.v b/powerpc/Asm.v
index 81f81040..a9b60fbd 100644
--- a/powerpc/Asm.v
+++ b/powerpc/Asm.v
@@ -477,15 +477,15 @@ Axiom low_high_half:
register pointing to the base of the small data area containing
symbol [symb]. We leave this transformation up to the linker. *)
-Parameter symbol_is_small_data: ident -> bool.
+Parameter symbol_is_small_data: ident -> int -> bool.
Parameter small_data_area_offset: genv -> ident -> int -> val.
Axiom small_data_area_addressing:
forall id ofs,
- symbol_is_small_data id = true ->
+ symbol_is_small_data id ofs = true ->
small_data_area_offset ge id ofs = Genv.symbol_address ge id ofs.
-Parameter symbol_is_rel_data: ident -> bool.
+Parameter symbol_is_rel_data: ident -> int -> bool.
(** Armed with the [low_half] and [high_half] functions,
we can define the evaluation of a symbolic constant.