Changes in directory llvm/lib/ExecutionEngine/Interpreter:
ExternalFunctions.cpp updated: 1.98 -> 1.99
---
Log message:
On Linux platforms and at optimization levels -O1 and above, llvm-gcc can
turn "putchar" calls into _IO_putc calls which is a lower-level interface.
This patch allows these ca
Changes in directory llvm/lib/ExecutionEngine/Interpreter:
ExternalFunctions.cpp updated: 1.97 -> 1.98
---
Log message:
We only need one putchar which gives it a shot at getting matched by its
users.
---
Diffs of the changes: (+4 -17)
ExternalFunctions.cpp | 21 -
1 f
Changes in directory llvm/lib/ExecutionEngine/Interpreter:
ExternalFunctions.cpp updated: 1.96 -> 1.97
---
Log message:
For PR1293: http://llvm.org/PR1293 :
* Rename the FunctionType* parameter from M to FT on all the functions.
* Implement a fix for PR1293: http://llvm.org/PR1293 by just asse
Changes in directory llvm/lib/ExecutionEngine/Interpreter:
ExternalFunctions.cpp updated: 1.95 -> 1.96
---
Log message:
Adjust and simplify external function processing now that GenericValue has
a single integer field of type APInt.
---
Diffs of the changes: (+41 -33)
ExternalFunctions.cpp
Changes in directory llvm/lib/ExecutionEngine/Interpreter:
ExternalFunctions.cpp updated: 1.87 -> 1.88
---
Log message:
initial changes to support JIT'ing from multiple module providers, implicitly
linking the program on the fly.
---
Diffs of the changes: (+1 -1)
ExternalFunctions.cpp |
Changes in directory llvm/lib/ExecutionEngine/Interpreter:
ExternalFunctions.cpp updated: 1.86 -> 1.87
---
Log message:
Fix -pedantic warnings
---
Diffs of the changes: (+3 -2)
ExternalFunctions.cpp |5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
Index: llvm/lib/ExecutionE
Changes in directory llvm/lib/ExecutionEngine/Interpreter:
ExternalFunctions.cpp updated: 1.85 -> 1.86
---
Log message:
For PR786: http://llvm.cs.uiuc.edu/PR786 :
Minor tweaks in public headers and a few .cpp files so that LLVM can build
successfully with -pedantic and projects using LLVM with