Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Sutcliffe <ir0nh34d@users.sourceforge.net>2009-07-18 19:05:20 +0400
committerChris Sutcliffe <ir0nh34d@users.sourceforge.net>2009-07-18 19:05:20 +0400
commitab4b2481529bf4e1c57dc430721b4bfc9cf27f40 (patch)
tree719b38f7686c216558e397b3ccc0d5906a1e45dc /winsup/mingw/cpu_features.c
parentf9a5b8ea6a1cb5e5e758d2e18cca5849b2237671 (diff)
2009-07-18 Gregory McGarry <gregorymcgarry@users.sourceforge.net>
* cpu_features.c: replace gcc-specific construct with portable alternative and match the code a few lines above. * crt1.c: remove gcc-specific noreturn attribute with mingw alternative
Diffstat (limited to 'winsup/mingw/cpu_features.c')
-rwxr-xr-xwinsup/mingw/cpu_features.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/mingw/cpu_features.c b/winsup/mingw/cpu_features.c
index 5e2c26557..00697347b 100755
--- a/winsup/mingw/cpu_features.c
+++ b/winsup/mingw/cpu_features.c
@@ -19,7 +19,7 @@
#define EDX_LM (1 << 29) /*LONG MODE */
#define __cpuid(level,a,b,c,d) \
- __asm__ __volatile__ ("cpuid;" \
+ asm volatile ("cpuid;" \
: "=a" (a), "=b" (b), "=c" (c), "=d" (d)\
: "0" (level))