Displaying 6 results from an estimated 6 matches for "jhenry".
Did you mean:
henry
2011 Oct 21
4
[LLVMdev] inline functions
Hi all,
I have an LLVM bitcode file, with several functions in it.
I'm trying to inline these functions as much as possible, so that I can
obtain a big single function.
There is opt -inline, but it is not sufficient.
Any idea ?
--
Julien Henry
http://www-verimag.imag.fr/~jhenry/
2011 May 20
1
[LLVMdev] Compile a project into LLVM Bitcode
...-p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for gawk... (cached) gawk
checking for gcc... clang
checking whether the C compiler works... no
configure: error: in `/local/jhenry/examples/grep-2.8':
configure: error: C compiler cannot create executables
See `config.log' for more details
2011 May 20
2
[LLVMdev] Compile a project into LLVM Bitcode
Hi all,
I'm trying to compile projects into LLVM Bitcode files instead of
executable binaries, without needing to change the Makefile and the
configure script.
What is the simplest way of doing that ?
Thanks
Julien
2011 May 20
0
[LLVMdev] Compile a project into LLVM Bitcode
You can use Clang to compile source to bitcode:
clang -c hello.c -emit-llvm -o hello.bc
Hope that helps,
Philip
-----Original Message-----
From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Julien Henry
Sent: Friday, May 20, 2011 10:42 AM
To: LLVM Developers Mailing List
Subject: [LLVMdev] Compile a project into LLVM Bitcode
Hi all,
I'm trying to
2011 Oct 21
0
[LLVMdev] inline functions
On 10/21/11 7:18 AM, Julien Henry wrote:
> Hi all,
>
> I have an LLVM bitcode file, with several functions in it.
> I'm trying to inline these functions as much as possible, so that I can
> obtain a big single function.
> There is opt -inline, but it is not sufficient.
There an option in opt to change the inlining threshold. Do opt
--help-hidden to find it. It might help.
2011 May 20
1
[LLVMdev] LLVMdev Digest, Vol 83, Issue 33
...hecking whether make sets $(MAKE)... yes
> checking build system type... i686-pc-linux-gnu
> checking host system type... i686-pc-linux-gnu
> checking for gawk... (cached) gawk
> checking for gcc... clang
> checking whether the C compiler works... no
> configure: error: in `/local/jhenry/examples/grep-2.8':
> configure: error: C compiler cannot create executables
> See `config.log' for more details
>
>
> ------------------------------
>
> Message: 13
> Date: Fri, 20 May 2011 10:39:29 -0500
> From: John Criswell <criswell at illinois.edu>
>...