search for: berube

Displaying 8 results from an estimated 8 matches for "berube".

2011 Oct 14
1
[LLVMdev] Implementing optimization levels -03
I'm looking at implementing a custom optimization level similar to the usual -0* family. I'd like to look at the implementations of the existing groups. Could anyone tell me where to find them? Thanks, --Paul
2011 Oct 21
0
[LLVMdev] build warnings
...error, and even with those of us that don't warnings are not tolerated. You're already seeing all the warnings that are coming out of the build :) Cheers, James ________________________________________ From: llvmdev-bounces at cs.uiuc.edu [llvmdev-bounces at cs.uiuc.edu] On Behalf Of Paul Berube [pberube at ualberta.ca] Sent: 21 October 2011 23:07 To: llvmdev at cs.uiuc.edu Subject: [LLVMdev] build warnings Hi, I want to see any warning that are produced when I build llvm (in particular, those in code I'm writing). Before I do something quick and dirty with tee and grep, I was wonde...
2011 Oct 21
3
[LLVMdev] build warnings
Hi, I want to see any warning that are produced when I build llvm (in particular, those in code I'm writing). Before I do something quick and dirty with tee and grep, I was wondering if there was already something available to, for example, reprint warnings after a build completes? Thanks, --Paul
2011 Oct 23
0
[LLVMdev] build warnings
...n't seen those errors. Clang and LLVM both build with no warnings on the 3 versions of GCC I test with. MSVC reports loads of warnings however. Cheers, James ________________________________________ From: Csaba Raduly [rcsaba at gmail.com] Sent: 23 October 2011 18:44 To: James Molloy Cc: Paul Berube; llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] build warnings On Sat, Oct 22, 2011 at 12:24 AM, James Molloy wrote: > Hi Paul, > > That should be easy enough, because the LLVM build has no warnings in it! > > Some of us build with -Werror, and even with those of us that don't w...
2011 Oct 24
1
[LLVMdev] build warnings
On Sun, Oct 23, 2011 at 10:34 PM, James Molloy wrote: > Hi, > > I haven't seen those errors. Clang and LLVM both build with no warnings on the 3 versions of GCC I test with. MSVC reports loads of warnings however. > $ make happiness ... Updated to revision 142790. ... make[4]: Entering directory `/home/ecsardu/LLVM/build-tcclab1/tools/clang/tools/libclang' llvm[4]: Compiling
2011 Oct 23
5
[LLVMdev] build warnings
On Sat, Oct 22, 2011 at 12:24 AM, James Molloy wrote: > Hi Paul, > > That should be easy enough, because the LLVM build has no warnings in it! > > Some of us build with -Werror, and even with those of us that don't warnings are not tolerated. You're already seeing all the warnings that are coming out of the build :) So, all the "variable might be used
2011 Jun 08
0
[LLVMdev] Thinking about a profile-guided LTO inliner
I'm new to llvm, but plan to implement a profile-guided link-time function inliner as part of my research. So far I've been reading through a lot of the docs and some of the source, and have a few questions that are hopefully fairly high-level and easily answered by someone who's actually gotten their hands dirty. Pointing me to a file or document is a great answer for me at this
2011 Oct 27
0
[LLVMdev] sharing code between tools
Hi, I have 2 distinct but related tools (in tools/) that have significant code duplication. I would like to factor out that duplicated code, but I'm not sure where to put the extracted code or how to hook it into the build system. Thanks in advance for any advice, --Paul PS: please ensure to CC me on your response; I can't keep up with all the traffic on this list.