[llvm-commits] [llvm] r53309 - in /llvm/trunk/lib/Target: TargetAsmInfo.cpp X86/X86ATTAsmPrinter.cpp

Bill Wendling isanbard at gmail.com
Sun Jul 27 16:13:14 PDT 2008


On Jul 9, 2008, at 6:24 AM, Anton Korobeynikov wrote:

> Modified: llvm/trunk/lib/Target/X86/X86ATTAsmPrinter.cpp
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ATTAsmPrinter.cpp?rev=53309&r1=53308&r2=53309&view=diff
>
> =
> =
> =
> =
> =
> =
> =
> =
> ======================================================================
> --- llvm/trunk/lib/Target/X86/X86ATTAsmPrinter.cpp (original)
> +++ llvm/trunk/lib/Target/X86/X86ATTAsmPrinter.cpp Wed Jul  9  
> 08:24:38 2008
> @@ -32,6 +32,8 @@
> #include "llvm/Target/TargetOptions.h"
> using namespace llvm;
>
> +#include <iostream>
> +

!!! Please remove this.

-bw

>
> STATISTIC(EmittedInsts, "Number of machine instrs printed");
>
> static std::string getPICLabelString(unsigned FnNum,
> @@ -772,6 +774,9 @@
>   if (!GVar->hasInitializer())
>     return;   // External global require no code
>
> +  GVar->dump();
> +  std::cout << TAI->SectionForGlobal(GVar) << std::endl;
> +
>   // Check to see if this is a special global used by LLVM, if so,  
> emit it.
>   if (EmitSpecialLLVMGlobal(GVar)) {
>     if (Subtarget->isTargetDarwin() &&
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits




More information about the llvm-commits mailing list