summaryrefslogtreecommitdiff
path: root/src/passes/J2CLItableMerging.cpp
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-12-20 17:45:47 -0800
committerGitHub <noreply@github.com>2024-12-21 01:45:47 +0000
commit6ddacde514af7cc546caa07fede4baa3e429c33c (patch)
tree3436a22906ae3b94d3308e738a31d3db559bf246 /src/passes/J2CLItableMerging.cpp
parent4d8a933e1136159160f2b45ad3a9a1c82021a75b (diff)
downloadbinaryen-6ddacde514af7cc546caa07fede4baa3e429c33c.tar.gz
binaryen-6ddacde514af7cc546caa07fede4baa3e429c33c.tar.bz2
binaryen-6ddacde514af7cc546caa07fede4baa3e429c33c.zip
[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.
Diffstat (limited to 'src/passes/J2CLItableMerging.cpp')
-rw-r--r--src/passes/J2CLItableMerging.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/passes/J2CLItableMerging.cpp b/src/passes/J2CLItableMerging.cpp
index 472d18b7e..be8da22ce 100644
--- a/src/passes/J2CLItableMerging.cpp
+++ b/src/passes/J2CLItableMerging.cpp
@@ -280,6 +280,7 @@ struct J2CLItableMerging : public Pass {
replaceCurrent(builder.makeStructGet(
0,
curr->ref,
+ MemoryOrder::Unordered,
parent.structInfoByITableType[curr->type.getHeapType()]
->javaClass.getStruct()
.fields[0]
@@ -341,4 +342,4 @@ struct J2CLItableMerging : public Pass {
} // anonymous namespace
Pass* createJ2CLItableMergingPass() { return new J2CLItableMerging(); }
-} // namespace wasm \ No newline at end of file
+} // namespace wasm