[pypy-svn] r34053 - in pypy/dist/pypy/jit/codegen/llvm: . lib test
ericvrp at codespeak.net
ericvrp at codespeak.net
Thu Nov 2 10:59:24 CET 2006
Author: ericvrp
Date: Thu Nov 2 10:59:21 2006
New Revision: 34053
Removed:
pypy/dist/pypy/jit/codegen/llvm/jitcode.py
pypy/dist/pypy/jit/codegen/llvm/test/test_rgenop.py
Modified:
pypy/dist/pypy/jit/codegen/llvm/lib/libllvmjit.cpp
Log:
* don not write the .bc file to disc after parsing the .ll file.
* remove old llvm jit interface
Modified: pypy/dist/pypy/jit/codegen/llvm/lib/libllvmjit.cpp
==============================================================================
--- pypy/dist/pypy/jit/codegen/llvm/lib/libllvmjit.cpp (original)
+++ pypy/dist/pypy/jit/codegen/llvm/lib/libllvmjit.cpp Thu Nov 2 10:59:21 2006
@@ -33,9 +33,9 @@
return false;
}
- std::ostream *Out = new std::ofstream((inputfile + ".bc").c_str(),
- std::ios::out | std::ios::trunc | std::ios::binary);
- WriteBytecodeToFile(module, *Out); //XXX what to do with the 3rd param (NoCompress)?
+ //std::ostream *Out = new std::ofstream((inputfile + ".bc").c_str(),
+ // std::ios::out | std::ios::trunc | std::ios::binary);
+ //WriteBytecodeToFile(module, *Out); //XXX what to do with the 3rd param (NoCompress)?
ModuleProvider* module_provider = new ExistingModuleProvider(module);
if (!g_execution_engine) {
More information about the pypy-svn
mailing list