From: Jan-Simon Möller <dl9pf@xxxxxx> Author: PaX Team <pageexec at freemail.hu> ML-Post: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20120507/142707.html URL: http://llvm.linuxfoundation.org Merge: Jan-Simon Möller <dl9pf at gmx.de> Description: Clang chokes on the notation "insw (%%dx)" but works for "insw %%dx" (outsw likewise); GNU as accepts both forms. Signed-off-by: Jan-Simon Möller <dl9pf@xxxxxx> CC: Jan-Simon Möller <dl9pf@xxxxxx> CC: PaX Team <pageexec@xxxxxxxxxxx> CC: Behan Webster <behanw@xxxxxxxxxxxxxxxxxx> CC: "James E.J. Bottomley" <JBottomley@xxxxxxxxxxxxx> CC: linux-scsi@xxxxxxxxxxxxxxx CC: linux-kernel@xxxxxxxxxxxxxxx --- drivers/scsi/in2000.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/in2000.h b/drivers/scsi/in2000.h index 5821e1f..cd8d852 100644 --- a/drivers/scsi/in2000.h +++ b/drivers/scsi/in2000.h @@ -72,7 +72,7 @@ int __dummy_1,__dummy_2; \ orl %%ecx, %%ecx \n \ jz 1f \n \ rep \n \ - insw (%%dx),%%es:(%%edi) \n \ + insw %%dx,%%es:(%%edi) \n \ 1: " \ : "=D" (sp) ,"=c" (__dummy_1) ,"=d" (__dummy_2) /* output */ \ : "2" (f), "0" (sp), "1" (i) /* input */ \ @@ -87,7 +87,7 @@ int __dummy_1,__dummy_2; \ orl %%ecx, %%ecx \n \ jz 1f \n \ rep \n \ - outsw %%ds:(%%esi),(%%dx) \n \ + outsw %%ds:(%%esi),%%dx \n \ 1: " \ : "=S" (sp) ,"=c" (__dummy_1) ,"=d" (__dummy_2)/* output */ \ : "2" (f), "0" (sp), "1" (i) /* input */ \ -- 1.8.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html