Displaying 1 result from an estimated 1 matches for "unsigned_int_32".
2006 Sep 02
1
[LLVMdev] error in /lib/CodeGen/MachOWriter.cpp: line 200
Hi!
I updated LLVM from CVS today and run into the following error:
/lib/CodeGen/MachOWriter.cpp: line 200: no match for function
max(unsigned_int_32, unsigned int)
the line is
Sec.align = std::max(Sec.align, Align);
where Sec.align is of type "unsigned_int_32" and Align is of "unsigned int".
I use gcc-3.4.4 under cygwin. Сasting of the first parameter to simple
unsigned type solved the problem (though casting of the seco...