Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/internal/task/task_stack_mipsx.S
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Do not reorder instructions to insert a branch delay slot.
// We know what we're doing, and will manually fill the branch delay slot.
.set noreorder

.section .text.tinygo_startTask
.global tinygo_startTask
.type tinygo_startTask, %function
Expand Down
4 changes: 4 additions & 0 deletions src/runtime/asm_mipsx.S
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Do not reorder instructions to insert a branch delay slot.
// We know what we're doing, and will manually fill the branch delay slot.
.set noreorder

.section .text.tinygo_scanCurrentStack
.global tinygo_scanCurrentStack
.type tinygo_scanCurrentStack, %function
Expand Down