search for: basicaastub

Displaying 3 results from an estimated 3 matches for "basicaastub".

2004 Dec 08
0
[LLVMdev] Compiling with Intel c++ 8.0
...aStructure/DSGraph.h: why is the method moved out of line? Please add a comment before the out-of-line body indicating why it should not be moved back inline. Analysis/AliasAnalysis.cpp: why don't you need the external stub? Does it work for you like this? namespace llvm { extern void BasicAAStub(); } include/llvm/ADT/HashExtras.h: Is pointer support already built into the intel headers, making the hash implementation unneeded? If so, please add a comment to the #ifndef indicating that. As a general comment, please keep source lines within 80 columns. Otherwise the patches look great,...
2004 Dec 08
3
[LLVMdev] Compiling with Intel c++ 8.0
Hi, I am attempting to compile the llvm distribution with the Intel Compiler 8.0 on linux and I have some minor patches I would like to apply. In our project we compile and run the code both on win32, together with Morten Ofstad using the MS compiler, and on linux using the intel compiler. I have wrapped the extra code to make llvm compile for icc in #ifdef __INTEL_COMPILER #endif The patches
2004 Dec 08
1
[LLVMdev] Compiling with Intel c++ 8.0
...ng potentially overall compilation time), or defining the function in the .cpp file. I chose the latter to be conformant with what you do. lib/Analysis/AliasAnalysis.cpp ICC gives me an error saying the function is already declared as extern. However, as you suggest: namespace llvm { extern void BasicAAStub(); }; Works like a charm ! Thanx. (Should have thought of that....) Sincerely Bjornw> -----Original Message----- From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Chris Lattner Sent: Wednesday, December 08, 2004 5:43 PM To: LLVM Developers Mailing Li...