 ------------------------------------------------------------------------
r3928 | bellard | 2008-01-21 09:07:18 -0600 (Mon, 21 Jan 2008) | 2 lines
Changed paths:
   M /trunk/softmmu_header.h

fixed register constraint

 ------------------------------------------------------------------------
Index: softmmu_header.h
===================================================================
--- softmmu_header.h	(revision 3927)
+++ softmmu_header.h	(revision 3928)
@@ -207,9 +207,11 @@
                   "2:\n"
                   :
                   : "r" (ptr),
-/* NOTE: 'q' would be needed as constraint, but we could not use it
-   with T1 ! */
+#if DATA_SIZE == 1
+                  "q" (v),
+#else
                   "r" (v),
+#endif
                   "i" ((CPU_TLB_SIZE - 1) << CPU_TLB_ENTRY_BITS),
                   "i" (TARGET_PAGE_BITS - CPU_TLB_ENTRY_BITS),
                   "i" (TARGET_PAGE_MASK | (DATA_SIZE - 1)),

Property changes on: softmmu_header.h
___________________________________________________________________
Name: cvs2svn:cvs-rev
   - 1.18
   + 1.19

