[LLVMdev] Bug in TargetRegistry.h?

Ivan Krasin krasin at chromium.org
Thu Sep 8 00:31:07 PDT 2011


On Thu, Sep 8, 2011 at 12:12 AM, Max Kazakov <max.kazakov at gmail.com> wrote:
> Hi,
>
> The code @ line 584 of TargetRegistry.h effectively suppresses specifying any
> AsmStreamer constructor function but stock createAsmStreamer one. Is it by
> intention or condition should be replaced with != ?
Hi Max,

are you sure that you have the tip-of-tree version of
include/llvm/Support/TargetRegistry.h?

   static void RegisterMCInstrAnalysis(Target &T,
                                        Target::MCInstrAnalysisCtorFnTy Fn) {
      // Ignore duplicate registration.
      if (!T.MCInstrAnalysisCtorFn)
        T.MCInstrAnalysisCtorFn = Fn;
    } // line 584 is here


krasin
>
> Best regards,
>
>  Max
>
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu         http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>




More information about the llvm-dev mailing list