Fix thinko

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53309 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/X86/X86ATTAsmPrinter.cpp b/lib/Target/X86/X86ATTAsmPrinter.cpp
index a61bb22..4a9002c 100644
--- a/lib/Target/X86/X86ATTAsmPrinter.cpp
+++ b/lib/Target/X86/X86ATTAsmPrinter.cpp
@@ -32,6 +32,8 @@
 #include "llvm/Target/TargetOptions.h"
 using namespace llvm;
 
+#include <iostream>
+
 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() &&