[llvm-commits] CVS: llvm/include/llvm/CodeGen/AsmPrinter.h

Chris Lattner lattner at cs.uiuc.edu
Sat Jan 8 11:58:04 PST 2005



Changes in directory llvm/include/llvm/CodeGen:

AsmPrinter.h updated: 1.9 -> 1.10
---
Log message:

Adjust prototype


---
Diffs of the changes:  (+2 -1)

Index: llvm/include/llvm/CodeGen/AsmPrinter.h
diff -u llvm/include/llvm/CodeGen/AsmPrinter.h:1.9 llvm/include/llvm/CodeGen/AsmPrinter.h:1.10
--- llvm/include/llvm/CodeGen/AsmPrinter.h:1.9	Tue Aug 17 21:22:34 2004
+++ llvm/include/llvm/CodeGen/AsmPrinter.h	Sat Jan  8 13:57:49 2005
@@ -17,6 +17,7 @@
 #define LLVM_CODEGEN_ASMPRINTER_H
 
 #include "llvm/CodeGen/MachineFunctionPass.h"
+#include "llvm/Support/DataTypes.h"
 
 namespace llvm {
   class Constant;
@@ -116,7 +117,7 @@
 
     /// emitZeros - Emit a block of zeros.
     ///
-    void emitZeros(unsigned NumZeros) const;
+    void emitZeros(uint64_t NumZeros) const;
 
     /// emitConstantValueOnly - Print out the specified constant, without a
     /// storage class.  Only constants of first-class type are allowed here.






More information about the llvm-commits mailing list