From 34334091d57c22bd929d9d832eed42d8f308b7b4 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 17 Aug 2004 21:38:51 +0000 Subject: [PATCH] new method llvm-svn: 15895 --- include/llvm/CodeGen/AsmPrinter.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h index f21ed140b47..bb41ad5663e 100644 --- a/include/llvm/CodeGen/AsmPrinter.h +++ b/include/llvm/CodeGen/AsmPrinter.h @@ -114,6 +114,10 @@ namespace llvm { /// byte alignment. void emitAlignment(unsigned NumBits) const; + /// emitZeros - Emit a block of zeros. + /// + void emitZeros(unsigned NumZeros) const; + /// emitConstantValueOnly - Print out the specified constant, without a /// storage class. Only constants of first-class type are allowed here. void emitConstantValueOnly(const Constant *CV);