From 827d91f257d1837bc5acf96f69764afbcb8a0c67 Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Sun, 14 Jul 2002 23:05:53 +0000 Subject: [PATCH] Use a helper function outputConstantsInPlane in outputConstants. llvm-svn: 2897 --- llvm/lib/Bytecode/Writer/WriterInternals.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llvm/lib/Bytecode/Writer/WriterInternals.h b/llvm/lib/Bytecode/Writer/WriterInternals.h index 7b54a5649779..51374ee4af36 100644 --- a/llvm/lib/Bytecode/Writer/WriterInternals.h +++ b/llvm/lib/Bytecode/Writer/WriterInternals.h @@ -38,6 +38,8 @@ private : void outputModuleInfoBlock(const Module *C); void outputSymbolTable(const SymbolTable &ST); + void outputConstantsInPlane(const std::vector &Plane, + unsigned StartNo); bool outputConstant(const Constant *CPV); void outputType(const Type *T); };