search for: targetusessymbolsmarkedloc

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

2005 Jul 11
0
[LLVMdev] Mod for using GAS with MS VC++
...= false; } else if (isCygwin) { ... } etc. Then instead of code that looks like this: if (!forCygwin && !forDarwin && !forWindows && I->hasInternalLinkage()) O << "\t.local " << name << "\n"; We would have: if (TargetUsesSymbolsMarkedLocal && I->hasInternalLinkage()) O << "\t.local " << name << "\n"; ... or something. -Chris -- http://nondot.org/sabre/ http://llvm.org/
2005 Jul 11
3
[LLVMdev] Mod for using GAS with MS VC++
Here is a mod to X86 that allows GAS to be used with MS Visual C++. I introduces a 'forWindows' variable like 'forCygwin' in th X86SharedAsmPrinter class. This may prompt thurther normalization, on the otherhand it may not :) Aaron -------------- next part -------------- An HTML attachment was scrubbed... URL:
2005 Jul 11
2
[LLVMdev] Mod for using GAS with MS VC++
...} > etc. > > Then instead of code that looks like this: > > if (!forCygwin && !forDarwin && !forWindows && I->hasInternalLinkage()) > O << "\t.local " << name << "\n"; > > We would have: > > if (TargetUsesSymbolsMarkedLocal && I->hasInternalLinkage()) > O << "\t.local " << name << "\n"; > > ... or something. Yes that would be much better and more normalized. Aaron