From 162faefd819d19c72cd838b4ba5494fa4776ef91 Mon Sep 17 00:00:00 2001 From: Mikael Pettersson Date: Sat, 7 Sep 2019 21:51:11 +0200 Subject: [PATCH] as: tunit: correct type of address field in #s_insn{} --- erlang/apps/as/src/tunit.hrl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erlang/apps/as/src/tunit.hrl b/erlang/apps/as/src/tunit.hrl index 1090745..37ad674 100644 --- a/erlang/apps/as/src/tunit.hrl +++ b/erlang/apps/as/src/tunit.hrl @@ -59,7 +59,7 @@ -record(s_insn, { high13 :: 0..((1 bsl 13) - 1) , at :: boolean() - , address :: non_neg_integer() % TODO: relocatable expr + , address :: expr() , index :: 0..((1 bsl 4) - 1) }).