From 6ddacde514af7cc546caa07fede4baa3e429c33c Mon Sep 17 00:00:00 2001 From: Thomas Lively Date: Fri, 20 Dec 2024 17:45:47 -0800 Subject: [NFC] Make MemoryOrder parameters non-optional (#7171) Update Builder and IRBuilder makeStructGet and makeStructSet functions to require the memory order to be explicitly supplied. This is slightly more verbose, but will reduce the chances that we forget to properly consider synchronization when implementing new features in the future. --- src/parser/parsers.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/parser/parsers.h') diff --git a/src/parser/parsers.h b/src/parser/parsers.h index 1f7236403..59f34038d 100644 --- a/src/parser/parsers.h +++ b/src/parser/parsers.h @@ -2240,7 +2240,8 @@ Result<> makeStructGet(Ctx& ctx, CHECK_ERR(type); auto field = fieldidx(ctx, *type); CHECK_ERR(field); - return ctx.makeStructGet(pos, annotations, *type, *field, signed_); + return ctx.makeStructGet( + pos, annotations, *type, *field, signed_, MemoryOrder::Unordered); } template @@ -2264,7 +2265,8 @@ makeStructSet(Ctx& ctx, Index pos, const std::vector& annotations) { CHECK_ERR(type); auto field = fieldidx(ctx, *type); CHECK_ERR(field); - return ctx.makeStructSet(pos, annotations, *type, *field); + return ctx.makeStructSet( + pos, annotations, *type, *field, MemoryOrder::Unordered); } template -- cgit v1.2.3