From 548e3dc31c02fd722a8e6b1008b711ac2e15b3d4 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Thu, 24 Sep 2020 16:35:45 +0200 Subject: [PATCH] Correct previously-introduced test being a no-op Forgot to invoke the macro due to a copy-paste error --- test/asm/macro-purge.asm | 1 + test/asm/macro-purge.err | 2 ++ 2 files changed, 3 insertions(+) diff --git a/test/asm/macro-purge.asm b/test/asm/macro-purge.asm index a1b1d09d..2200ab64 100644 --- a/test/asm/macro-purge.asm +++ b/test/asm/macro-purge.asm @@ -3,3 +3,4 @@ m: MACRO PURGE m WARN "Where am I?" ENDM + m diff --git a/test/asm/macro-purge.err b/test/asm/macro-purge.err index e69de29b..1293e8dd 100644 --- a/test/asm/macro-purge.err +++ b/test/asm/macro-purge.err @@ -0,0 +1,2 @@ +warning: macro-purge.asm(6) -> macro-purge.asm::m(4): [-Wuser] + Where am I?