diff options
author | Chris Lattner <sabre@nondot.org> | 2006-01-25 23:08:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-01-25 23:08:15 +0000 |
commit | 4470691999537102698546e773699bee1c216314 (patch) | |
tree | dee4c15849ce04ab20af6e5cd9eadb92c443c3a8 /llvm/lib/Bytecode/Reader/Reader.h | |
parent | a852660e746f45534aa0352bc08252fe1150c01f (diff) | |
download | bcm5719-llvm-4470691999537102698546e773699bee1c216314.tar.gz bcm5719-llvm-4470691999537102698546e773699bee1c216314.zip |
add bc reader/writer support for inline asm
llvm-svn: 25621
Diffstat (limited to 'llvm/lib/Bytecode/Reader/Reader.h')
-rw-r--r-- | llvm/lib/Bytecode/Reader/Reader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Bytecode/Reader/Reader.h b/llvm/lib/Bytecode/Reader/Reader.h index 25410838d34..21eb8462fb2 100644 --- a/llvm/lib/Bytecode/Reader/Reader.h +++ b/llvm/lib/Bytecode/Reader/Reader.h @@ -229,8 +229,8 @@ protected: void ParseConstantPool(ValueTable& Values, TypeListTy& Types, bool isFunction); - /// @brief Parse a single constant value - Constant* ParseConstantValue(unsigned TypeID); + /// @brief Parse a single constant pool value + Value *ParseConstantPoolValue(unsigned TypeID); /// @brief Parse a block of types constants void ParseTypes(TypeListTy &Tab, unsigned NumEntries); |