From f65136d23af623a4ca091331a1544cf500449750 Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Fri, 3 Jan 2020 20:01:36 +0000 Subject: [PATCH] mips !o32: fix csu build Pointy hat to: kevans --- lib/csu/mips/crt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/csu/mips/crt.h b/lib/csu/mips/crt.h index 4dac617c239f..b1250e02c4eb 100644 --- a/lib/csu/mips/crt.h +++ b/lib/csu/mips/crt.h @@ -51,8 +51,8 @@ ".set reorder \n" \ ".cpsetup $ra, $v0, 1b \n" \ ".local " __STRING(func) "\n" \ - "jal " __STRING(func) - "nop \n" \ + "jal " __STRING(func) "\n" \ + "nop \n" #endif #endif