Index: gcc/gcc/config/avr32/avr32.md
===================================================================
--- gcc/gcc/config/avr32/avr32.md	(revision 5106)
+++ gcc/gcc/config/avr32/avr32.md	(working copy)
@@ -1966,50 +1966,50 @@
 ;; R[0] <-- C
 ;; C <-- C'
 ;;=============================================================================
-(define_expand "rotlsi3"
-  [(set (match_operand:SI 0 "register_operand" "")
- 	(rotate:SI (match_operand:SI 1 "register_operand" "")
- 		   (match_operand:SI 2 "immediate_operand" "")))]
-  ""
-  {
-   if ( !( GET_CODE(operands[2]) == CONST_INT
-           && INTVAL(operands[2]) == 1) )
-      FAIL;
-  })
+; (define_expand "rotlsi3"
+;   [(set (match_operand:SI 0 "register_operand" "")
+;  	(rotate:SI (match_operand:SI 1 "register_operand" "")
+;  		   (match_operand:SI 2 "immediate_operand" "")))]
+;   ""
+;   {
+;    if ( !( GET_CODE(operands[2]) == CONST_INT
+;            && INTVAL(operands[2]) == 1) )
+;       FAIL;
+;   })
 
-(define_expand "rotrsi3"
-  [(set (match_operand:SI 0 "register_operand" "")
- 	(rotatert:SI (match_operand:SI 1 "register_operand" "")
-                     (match_operand:SI 2 "immediate_operand" "")))]
-  ""
-  {
-   if ( !( GET_CODE(operands[2]) == CONST_INT
-           && INTVAL(operands[2]) == 1) )
-      FAIL;
-  })
+;(define_expand "rotrsi3"
+;  [(set (match_operand:SI 0 "register_operand" "")
+; 	(rotatert:SI (match_operand:SI 1 "register_operand" "")
+;                     (match_operand:SI 2 "immediate_operand" "")))]
+;  ""
+;  {
+;   if ( !( GET_CODE(operands[2]) == CONST_INT
+;           && INTVAL(operands[2]) == 1) )
+;      FAIL;
+;  })
 
 
-(define_insn "rotate_left_one"
-  [(set (match_operand:SI 0 "register_operand" "+r, =r")
- 	(rotate:SI (match_operand:SI 1 "register_operand" "0,r")
- 		   (const_int 1)))]
-  ""
-  "@
-   rol\t%0
-   mov\t%0, %1\;rol\t%0"
-  [(set_attr "length" "2, 4")
-   (set_attr "cc" "clobber")])
+; (define_insn "rotate_left_one"
+;   [(set (match_operand:SI 0 "register_operand" "+r, =r")
+;  	(rotate:SI (match_operand:SI 1 "register_operand" "0,r")
+;  		   (const_int 1)))]
+;   ""
+;   "@
+;    rol\t%0
+;    mov\t%0, %1\;rol\t%0"
+;   [(set_attr "length" "2, 4")
+;    (set_attr "cc" "clobber")])
 
-(define_insn "rotate_right_one"
-  [(set (match_operand:SI 0 "register_operand" "+r,=r")
- 	(rotatert:SI (match_operand:SI 1 "register_operand" "0,r")
-                     (const_int 1)))]
-  ""
-  "@
-   ror\t%0
-   mov\t%0, %1\;ror\t%0"
-  [(set_attr "length" "2, 4")
-   (set_attr "cc" "clobber")])
+; (define_insn "rotate_right_one"
+;   [(set (match_operand:SI 0 "register_operand" "+r,=r")
+;  	(rotatert:SI (match_operand:SI 1 "register_operand" "0,r")
+;                      (const_int 1)))]
+;   ""
+;   "@
+;    ror\t%0
+;    mov\t%0, %1\;ror\t%0"
+;   [(set_attr "length" "2, 4")
+;    (set_attr "cc" "clobber")])
 
 
 ;;=============================================================================
