Skip to content

Commit 67a59c9

Browse files
committed
Don't, like, say, "like".
1 parent ac72747 commit 67a59c9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

llvm/lib/Target/WebAssembly/WebAssemblyInstrBulkMemory.td

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,27 +22,27 @@ multiclass BULK_I<dag oops_r, dag iops_r, dag oops_s, dag iops_s,
2222

2323
// Bespoke types and nodes for bulk memory ops
2424

25-
def wasm_memcpylike_t : SDTypeProfile<0, 5,
25+
def wasm_memcpy_t : SDTypeProfile<0, 5,
2626
[SDTCisInt<0>, SDTCisInt<1>, SDTCisPtrTy<2>, SDTCisPtrTy<3>, SDTCisInt<4>]
2727
>;
28-
def wasm_memsetlike_t : SDTypeProfile<0, 4,
28+
def wasm_memset_t : SDTypeProfile<0, 4,
2929
[SDTCisInt<0>, SDTCisPtrTy<1>, SDTCisInt<2>, SDTCisInt<3>]
3030
>;
3131

3232
// memory.copy (may trap on empty ranges)
33-
def wasm_memory_copy : SDNode<"WebAssemblyISD::MEMORY_COPY", wasm_memcpylike_t,
33+
def wasm_memory_copy : SDNode<"WebAssemblyISD::MEMORY_COPY", wasm_memcpy_t,
3434
[SDNPHasChain, SDNPMayLoad, SDNPMayStore]>;
3535

3636
// memory.copy with a branch to avoid trapping
37-
def wasm_memcpy : SDNode<"WebAssemblyISD::MEMCPY", wasm_memcpylike_t,
37+
def wasm_memcpy : SDNode<"WebAssemblyISD::MEMCPY", wasm_memcpy_t,
3838
[SDNPHasChain, SDNPMayLoad, SDNPMayStore]>;
3939

4040
// memory.fill (may trap on empty ranges)
41-
def wasm_memory_fill : SDNode<"WebAssemblyISD::MEMORY_FILL", wasm_memsetlike_t,
41+
def wasm_memory_fill : SDNode<"WebAssemblyISD::MEMORY_FILL", wasm_memset_t,
4242
[SDNPHasChain, SDNPMayStore]>;
4343

4444
// memory.fill with a branch to avoid trapping
45-
def wasm_memset : SDNode<"WebAssemblyISD::MEMSET", wasm_memsetlike_t,
45+
def wasm_memset : SDNode<"WebAssemblyISD::MEMSET", wasm_memset_t,
4646
[SDNPHasChain, SDNPMayStore]>;
4747

4848
// A multiclass for defining Wasm's raw bulk-memory `memory.*` instructions.

0 commit comments

Comments
 (0)