From 7aae451d931b1e03443c2bc97a5ea7258d1d7adb Mon Sep 17 00:00:00 2001 From: niravthakkar Date: Wed, 4 Jan 2017 18:15:57 +0530 Subject: [PATCH] Reverting the changes, as its breaking the build The above expression works on CLI, but its failing here, not sure whats going wrong , Please let me know your comments on it --- dynasm/dasm_s390x.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dynasm/dasm_s390x.lua b/dynasm/dasm_s390x.lua index a62fe21a..b3cda6ff 100644 --- a/dynasm/dasm_s390x.lua +++ b/dynasm/dasm_s390x.lua @@ -330,10 +330,10 @@ local function split_memop(arg) return 0, parse_reg(x), parse_reg(b) end -- Assuming that only displacement is passed, as either digit or label "45 or label1" - local d = match(arg,"[%w_]+") - if d then - return d, 0, 0 - end + -- local d = match(arg,"[%w_]+") + -- if d then + -- return d, 0, 0 + -- end local reg, tailr = match(arg, "^([%w_:]+)%s*(.*)$") if reg then local r, tp = parse_reg(reg)