Displaying 2 results from an estimated 2 matches for "cursymbol".
Did you mean:
auxsymbol
2010 Jul 16
0
[LLVMdev] Win32 COFF Support - Patch 3
...;unexpected", x)
> +
> +#define dbg_notimpl(x) dbgout("not implemented", x)
> +
Please use llvm::report_fatal_error() for both of these instead of custom
macros.
> namespace {
> class WinCOFFStreamer : public MCObjectStreamer {
> public:
> + MCSymbol const *CurSymbol;
> +
> WinCOFFStreamer(MCContext &Context,
> TargetAsmBackend &TAB,
> MCCodeEmitter &CE,
> raw_ostream &OS);
>
> + void OnSectionDataCreated(MCSection const *Section,
> +...
2010 Jul 14
2
[LLVMdev] Win32 COFF Support - Patch 3
On Sun, Jul 11, 2010 at 6:10 PM, Chris Lattner <clattner at apple.com> wrote:
> This probably needs to be slightly tweaked to work with mainline. I don't see anything objectionable, but I think Daniel needs to review this one.
Updated patch to work with mainline.
http://github.com/Bigcheese/llvm-mirror/commit/d19a4c82c18afc4830c09b70f02d162292231c94
- Michael Spencer