]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[MIPS] cpu-bugs64.c: GCC 3.3 constraint workaround
authorMaciej W. Rozycki <macro@linux-mips.org>
Mon, 17 Sep 2007 16:11:07 +0000 (17:11 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Wed, 19 Sep 2007 18:33:14 +0000 (19:33 +0100)
Add a workaround to address warnings generated on the "n" constraint by
GCC 3.3 and below.

Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/cpu-bugs64.c
include/asm-mips/compiler.h

index ac04f0adc408b45548cc9bd720797d29dec94878..6648fde20b965d839a7e9978ff830662dc5c0d92 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2003, 2004  Maciej W. Rozycki
+ * Copyright (C) 2003, 2004, 2007  Maciej W. Rozycki
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -29,7 +29,7 @@ static inline void align_mod(const int align, const int mod)
                ".endr\n\t"
                ".set   pop"
                :
-               : "rn" (align), "rn" (mod));
+               : GCC_IMM_ASM (align), GCC_IMM_ASM (mod));
 }
 
 static inline void mult_sh_align_mod(long *v1, long *v2, long *w,
index 169ae26105e9d8d5f71b41606f5399d9243db170..aa6b876bbd78d153042af014979eea2af04b768a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004  Maciej W. Rozycki
+ * Copyright (C) 2004, 2007  Maciej W. Rozycki
  *
  * This file is subject to the terms and conditions of the GNU General Public
  * License.  See the file "COPYING" in the main directory of this archive
@@ -9,8 +9,10 @@
 #define _ASM_COMPILER_H
 
 #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
+#define GCC_IMM_ASM "n"
 #define GCC_REG_ACCUM "$0"
 #else
+#define GCC_IMM_ASM "rn"
 #define GCC_REG_ACCUM "accum"
 #endif