From: Philip Blundell Date: Sun, 31 Dec 2000 17:27:12 +0000 (+0000) Subject: Add missing operands to asm statement. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e0cf507b2390537ca18112a3e921840b65cd5972;p=gcc.git Add missing operands to asm statement. From-SVN: r38571 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 605431d50a3..6c9f7ce1630 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-12-31 Philip Blundell + + * config/arm/linux-gas.h (CLEAR_INSN_CACHE): Add missing asm + operands. + 2000-12-30 Richard Henderson * dbxout.c (dbxout_block): Invert logic on eliding LBRAC/RBRAC. diff --git a/gcc/config/arm/linux-gas.h b/gcc/config/arm/linux-gas.h index 8cae382e25d..d50be3576f7 100644 --- a/gcc/config/arm/linux-gas.h +++ b/gcc/config/arm/linux-gas.h @@ -1,6 +1,6 @@ /* Definitions of target machine for GNU compiler. ARM Linux-based GNU systems version. - Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. Contributed by Russell King . This file is part of GNU CC. @@ -81,6 +81,6 @@ Boston, MA 02111-1307, USA. */ register unsigned long _flg __asm ("a3") = 0; \ __asm __volatile ("swi 0x9f0002 @ sys_cacheflush" \ : /* no outputs */ \ - : /* no inputs */ \ + : "r" (_beg), "r" (_end), "r" (_flg) \ : "a1"); \ }