From 47c98af2ba38108c60e666ec699de03747017bcb Mon Sep 17 00:00:00 2001 From: Anthony Green Date: Sat, 27 Dec 2014 12:18:56 +0000 Subject: The moxie sub.l instruction is now just sub. --- libgloss/moxie/crt0.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libgloss/moxie') diff --git a/libgloss/moxie/crt0.S b/libgloss/moxie/crt0.S index 44616a82e..17c6b98ab 100644 --- a/libgloss/moxie/crt0.S +++ b/libgloss/moxie/crt0.S @@ -1,6 +1,6 @@ /* crt0.S -- startup file for moxie * - * Copyright (c) 2008, 2009 Anthony Green + * Copyright (c) 2008, 2009, 2014 Anthony Green * * The authors hereby grant permission to use, copy, modify, distribute, * and license this software and its documentation for any purpose, provided @@ -26,7 +26,7 @@ _start: ldi.l $r0, __bss_start__ xor $r1, $r1 ldi.l $r2, __bss_end__ - sub.l $r2, $r0 + sub $r2, $r0 jsra memset /* Call _init to invoke static constructors, etc. */ -- cgit v1.2.3