Skip to content

Commit

Permalink
Fix failing compiler test
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Aug 9, 2023
1 parent 59f5b12 commit f323475
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class LocalNamesTest {
| val call = Test.method(0)
| val sizeOf = Intrinsics.sizeOf[Long]
| val alignmentOf = Intrinsics.alignmentOf[Long]
| val stackalloc = Intrinsics.stackalloc(sizeOf)
| val stackalloc = Intrinsics.stackalloc[Byte](sizeOf)
| val elem = Intrinsics.elemRawPtr(stackalloc, alignmentOf)
| val store = Intrinsics.storeInt(elem, 42)
| val load = Intrinsics.loadInt(elem)
Expand Down

0 comments on commit f323475

Please sign in to comment.