diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-07-14 23:05:53 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-07-14 23:05:53 +0000 |
commit | 827d91f257d1837bc5acf96f69764afbcb8a0c67 (patch) | |
tree | 63bf9a81066339931c5c00f8798684a5ba97fa94 /llvm/lib/Bytecode/Writer | |
parent | a336afd5d9b85da144fa3e68ba0866b5afa2285e (diff) | |
download | bcm5719-llvm-827d91f257d1837bc5acf96f69764afbcb8a0c67.tar.gz bcm5719-llvm-827d91f257d1837bc5acf96f69764afbcb8a0c67.zip |
Use a helper function outputConstantsInPlane in outputConstants.
llvm-svn: 2897
Diffstat (limited to 'llvm/lib/Bytecode/Writer')
-rw-r--r-- | llvm/lib/Bytecode/Writer/WriterInternals.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Bytecode/Writer/WriterInternals.h b/llvm/lib/Bytecode/Writer/WriterInternals.h index 7b54a564977..51374ee4af3 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<const Value*> &Plane, + unsigned StartNo); bool outputConstant(const Constant *CPV); void outputType(const Type *T); }; |