From 0640b264d900f81bc2e6248fd5f615821c4f1293 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Rinc=C3=B3n=20Blanco?= Date: Tue, 20 Dec 2022 16:22:25 +0100 Subject: [PATCH] Add .hword and .octa to datadefs (#30) For compiler-explorer/compiler-explorer/issues/4434 --- src/utils/regexes.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/regexes.hpp b/src/utils/regexes.hpp index 5c9e191..21eeeab 100644 --- a/src/utils/regexes.hpp +++ b/src/utils/regexes.hpp @@ -14,7 +14,7 @@ struct Regexes static constexpr auto labelFindMips = ctre::match; static constexpr auto mipsLabelDefinition = ctre::match; - static constexpr auto dataDefn = ctre::search; + static constexpr auto dataDefn = ctre::search; static constexpr auto fileFind = ctre::match; static constexpr auto hasOpcodeRe = ctre::search; // todo: stop using this static constexpr auto instructionRe = make_matcher;