Add reg clobber list for direct calls
[oota-llvm.git] / lib / Target / X86 / X86AsmPrinter.cpp
index 88dc554957e12d8e775b1bec3b2a22f1285db3c5..84b43a06785374537a2acff183533a5183e70da3 100644 (file)
@@ -21,6 +21,10 @@ namespace {
 
     Printer(TargetMachine &tm, std::ostream &o) : TM(tm), O(o) {}
 
+    virtual const char *getPassName() const {
+      return "X86 Assembly Printer";
+    }
+
     bool runOnFunction(Function &F);
   };
 }