Displaying 7 results from an estimated 7 matches for "llvmopaquemodul".
Did you mean:
llvmopaquemodule
2012 Nov 01
1
[LLVMdev] emitting dwarf debug info on mach fails with assert
...m::FPPassManager::runOnModule(llvm::Module & M) Line 1520
llvm::MPPassManager::runOnModule(llvm::Module & M) Line 1572
llvm::PassManagerImpl::run(llvm::Module & M) Line 1655
llvm::PassManager::run(llvm::Module & M) Line 1685 C++
LLVMTargetMachineEmitToFile(LLVMTargetMachine * T, LLVMOpaqueModule * M,
char * Filename, LLVMCodeGenFileType codegen, char * * ErrorMessage)
Line 194 C++
There are two "CodeFile1.pas" files in the same IR file, however they're
in different directories so that should be fine, from a debuggers pov.
Is this something I'm doing wrong, or a bug,...
2008 Mar 04
0
[LLVMdev] [PATCH] Cleanup the c and ocaml binding documentation.
...+ include/llvm-c/Core.h
> @@ -48,20 +48,20 @@ extern "C" {
>
> /**
> * The top-level container for all other LLVM Intermediate
> Representation (IR)
> - * objects. See the llvm::Module class.
> + * objects. See the [llvm::Module] class.
> */
> typedef struct LLVMOpaqueModule *LLVMModuleRef;
>
> /**
> - * Each value in the LLVM IR has a type, an instance of [lltype].
> See the
> - * llvm::Type class.
> + * Each value in the LLVM IR has a type, an instance of
> [LLVMTypeRef]. See the
> + * [llvm::Type] class.
> */
> typedef struct LLVM...
2008 Mar 04
1
[LLVMdev] [PATCH] Cleanup the c and ocaml binding documentation.
---
bindings/ocaml/llvm/llvm.ml | 2 +-
bindings/ocaml/llvm/llvm.mli | 2 +-
bindings/ocaml/llvm/llvm_ocaml.c | 2 +-
include/llvm-c/Core.h | 32 +++++++++++++++++++-------------
4 files changed, 22 insertions(+), 16 deletions(-)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 316a84e85ed2363551149e65a227c8e7c8192624.diff
Type:
2008 Mar 04
3
[LLVMdev] [PATCH] Cleanup the c and ocaml binding documentation.
...@@ -48,20 +48,20 @@ extern "C" {
>>
>> /**
>> * The top-level container for all other LLVM Intermediate
>> Representation (IR)
>> - * objects. See the llvm::Module class.
>> + * objects. See the [llvm::Module] class.
>> */
>> typedef struct LLVMOpaqueModule *LLVMModuleRef;
Actually, I spoke too soon. ocamldoc's [] syntax is not recognized by
doxygen, so it will just be noise. Please leave it out in C.
Thanks,
Gordon
2008 Jun 11
0
[LLVMdev] LLVM on OpenBSD
...ttp://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20080609/063564.html
If not, I'll just write a configure test for this as the related FIXME
suggests.
> llvm[3]: Compiling Deserialize.cpp for Release build
> BitWriter.cpp: In function `int
> LLVMWriteBitcodeToFileHandle(LLVMOpaqueModule*,
> int)':
> BitWriter.cpp:40: error: no matching function for call to `
> __gnu_cxx::stdio_filebuf<char, std::char_traits<char>
> >::stdio_filebuf(int&,
> std::_Ios_Openmode)'
> /usr/include/g++/ext/stdio_filebuf.h:53: error: candidates are:
>...
2008 Jun 10
6
[LLVMdev] LLVM on OpenBSD
...from /home/edd/llvm/llvm-2.3/include/llvm-c/BitWriter.h:22,
from BitWriter.cpp:10:
/home/edd/llvm/llvm-2.3/include/llvm/ParameterAttributes.h:71: warning: `inline
' is not at beginning of declaration
BitWriter.cpp: In function `int LLVMWriteBitcodeToFileHandle(LLVMOpaqueModule*,
int)':
BitWriter.cpp:40: error: no matching function for call to `
__gnu_cxx::stdio_filebuf<char, std::char_traits<char> >::stdio_filebuf(int&,
std::_Ios_Openmode)'
/usr/include/g++/ext/stdio_filebuf.h:53: error: candidates are:
__gnu_cxx::stdio_filebuf<cha...
2008 Mar 04
1
[LLVMdev] [PATCH] Prefer to use *.opt ocaml executables as they are more efficient.
I noticed that the ocaml compilation isn't using the .opt
executables if they're available. We might gain a slight
optimization in ocaml compile time by optionally using them
with this patch.
---
autoconf/configure.ac | 18 +++++
configure | 195 ++++++++++++++++++++++++++++++++++++++++++------
2 files changed, 188 insertions(+), 25 deletions(-)
-------------- next part