[pypy-commit] pypy default: Backed out changeset: ad12f8418f24

mattip noreply at buildbot.pypy.org
Wed May 7 18:31:43 CEST 2014


Author: mattip <matti.picus at gmail.com>
Branch: 
Changeset: r71389:8e7585c27369
Date: 2014-05-07 19:25 +0300
http://bitbucket.org/pypy/pypy/changeset/8e7585c27369/

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
@@ -753,8 +753,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
@@ -771,8 +769,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;


More information about the pypy-commit mailing list