Author: mattip <matti.pi...@gmail.com>
Branch: release-2.3.x
Changeset: r71392:154f94fa54b1
Date: 2014-05-07 19:25 +0300
http://bitbucket.org/pypy/pypy/changeset/154f94fa54b1/

Log:    Backed out changeset: ad12f8418f24

diff --git a/rpython/translator/c/genc.py b/rpython/translator/c/genc.py
--- a/rpython/translator/c/genc.py
+++ b/rpython/translator/c/genc.py
@@ -751,8 +751,6 @@
 
 def add_extra_files(eci):
     srcdir = py.path.local(__file__).join('..', 'src')
-    _MSVC = eci.platform.name == 'msvc'
-
     files = [
         srcdir / 'entrypoint.c',       # ifdef PYPY_STANDALONE
         srcdir / 'allocator.c',        # ifdef PYPY_STANDALONE
@@ -769,8 +767,6 @@
     ]
     if _CYGWIN:
         files.append(srcdir / 'cygwin_wait.c')
-    if _MSVC:
-        files.append(srcdir / 'asm_msvc.c')
     return eci.merge(ExternalCompilationInfo(separate_module_files=files))
 
 
diff --git a/rpython/translator/c/src/asm_msvc.c 
b/rpython/translator/c/src/asm_msvc.c
--- a/rpython/translator/c/src/asm_msvc.c
+++ b/rpython/translator/c/src/asm_msvc.c
@@ -1,6 +1,5 @@
 #ifdef PYPY_X86_CHECK_SSE2
 #include <intrin.h>
-#include <stdio.h>
 void pypy_x86_check_sse2(void)
 {
     int features;
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to