diff options
author | Chris Lattner <sabre@nondot.org> | 2005-01-08 19:57:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-01-08 19:57:49 +0000 |
commit | 190f3ba2aa58dc2e73a5f90dff15015a1ffa226b (patch) | |
tree | 6fc75371426a2a7b4f589160a6881164e24035e5 | |
parent | 28696bee024805a6b191cfe12e1a24784dae8aa7 (diff) |
Adjust prototype
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19387 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/AsmPrinter.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h index 00f3b74d85..39f309ec4e 100644 --- a/include/llvm/CodeGen/AsmPrinter.h +++ b/include/llvm/CodeGen/AsmPrinter.h @@ -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 @@ namespace llvm { /// 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. |