Cygwin: fix GCC 8.3 'asm volatile' errors

Remove the volatile qualifier, which is no longer allowed outside of
the function body.  See
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89585 for discussion.
This commit is contained in:
Ken Brown 2019-07-15 15:59:41 -04:00
parent d730fa7b9c
commit 81421eda7d
1 changed files with 2 additions and 2 deletions

View File

@ -724,7 +724,7 @@ err:
See FreeBSD src/lib/libc/amd64/string/memset.S
and FreeBSD src/lib/libc/amd64/string/bcopy.S */
asm volatile (" \n\
asm (" \n\
/* \n\
* Written by J.T. Conklin <jtc@NetBSD.org>. \n\
* Public domain. \n\
@ -791,7 +791,7 @@ L1: rep \n\
.seh_endproc \n\
");
asm volatile (" \n\
asm (" \n\
/*- \n\
* Copyright (c) 1990 The Regents of the University of California. \n\
* All rights reserved. \n\