search for: r51145

Displaying 4 results from an estimated 4 matches for "r51145".

2008 May 15
2
[LLVMdev] Header problem on GCC 4.3
> However, the proper include is #include <climits>, since we're in c++, not C. > > Could someone add this include to lib/Transforms/Scalar/LoopUnroll.cpp ? Done (r51145). Maybe this should go into the release too. Ciao, Duncan.
2008 May 15
0
[LLVMdev] Header problem on GCC 4.3
Hi, > > Could someone add this include to lib/Transforms/Scalar/LoopUnroll.cpp ? > Done (r51145). Maybe this should go into the release too. I don't think the unroll changes ended up in the release, so this fix shouldn't need to either. Gr. Matthijs -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size...
2008 May 15
2
[LLVMdev] Header problem on GCC 4.3
I tried to compile LLVM on Fedora 9 with GCC 4.3. The compilation fails because UINT_MAX is not defined in file lib/Transforms/Scalar/LoopUnroll.cpp. I included <limits.h> and everything works. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080515/4ba7997d/attachment.html>
2008 May 15
0
[LLVMdev] Header problem on GCC 4.3
Hi, I recently cleaned up the includes from the loop unrolling code, and this also removed this include. It seems it's included implicitely somehow here, because I have not problems compiling (running gcc 4.1). However, the proper include is #include <climits>, since we're in c++, not C. Could someone add this include to lib/Transforms/Scalar/LoopUnroll.cpp ? Gr. Matthijs