search for: arbritrati

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

Did you mean: arbritraty
2004 Dec 08
1
[LLVMdev] Compiling with Intel c++ 8.0
Chris, include/llvm/ADT/HashExtras.h I did some more testing on this topic: ICC complained that the last template was partially loaded and would be used to instantiate the template<> struct hash<const char *>. Rearranging the templates so that one for arbritraty pointers (inlined) comes first, works excellent for icc. E.g.: template <class T> struct hash<T *> { inline
2004 Dec 08
0
[LLVMdev] Compiling with Intel c++ 8.0
On Wed, 8 Dec 2004, [iso-8859-1] Bj�rn Wennberg wrote: > 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. Great! I'm going to leave the
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