search for: 89c90

Displaying 2 results from an estimated 2 matches for "89c90".

Did you mean: 8990
2005 Mar 08
0
[LLVMdev] GCC assembler rejects native code generated by LLVM
...Printer.cpp,v retrieving revision 1.132 diff -r1.132 X86AsmPrinter.cpp 87c87,88 < forCygwin = TT.find("cygwin") != std::string::npos; --- > forCygwin = TT.find("cygwin") != std::string::npos || > TT.find("mingw") != std::string::npos; 89c90 < #ifdef __CYGWIN__ --- > #if defined(__CYGWIN__) || defined(__MINGW32__) -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: <http://lists.llvm....
2005 Mar 08
3
[LLVMdev] GCC assembler rejects native code generated by LLVM
Vyacheslav, This is the same problem that I had with Cygwin .. nearly identical. The issue was documented in PR492 if you want some background. I'm currently trying to dig up what I did to fix this in December for Cygwin and see if I can apply the same change for mingw. Reid. On Mon, 2005-03-07 at 16:39, Vyacheslav Akhmechet wrote: > Ok, I got home so I have more details. Here's the