diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-01-24 04:14:29 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-01-24 04:14:29 +0000 |
| commit | 8ebd2164eb16135baa2f56645c3c41abbd9ee389 (patch) | |
| tree | da5dac6bf4ab601f6234e6d8aca0174d946ba695 /llvm/lib/Bytecode | |
| parent | eef2fe72c0096ab06533d77cf95b05ae35c7909e (diff) | |
| download | bcm5719-llvm-8ebd2164eb16135baa2f56645c3c41abbd9ee389.tar.gz bcm5719-llvm-8ebd2164eb16135baa2f56645c3c41abbd9ee389.zip | |
Rename method
llvm-svn: 25571
Diffstat (limited to 'llvm/lib/Bytecode')
| -rw-r--r-- | llvm/lib/Bytecode/Reader/Reader.cpp | 2 | ||||
| -rw-r--r-- | llvm/lib/Bytecode/Writer/Writer.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Bytecode/Reader/Reader.cpp b/llvm/lib/Bytecode/Reader/Reader.cpp index 6a3251d68ad..e57101aeb57 100644 --- a/llvm/lib/Bytecode/Reader/Reader.cpp +++ b/llvm/lib/Bytecode/Reader/Reader.cpp @@ -2111,7 +2111,7 @@ void BytecodeReader::ParseModuleGlobalInfo() { // If the file has module-level inline asm, read it now. if (!hasAlignment && At != BlockEnd) - TheModule->setInlineAsm(read_str()); + TheModule->setModuleInlineAsm(read_str()); } // If any globals are in specified sections, assign them now. diff --git a/llvm/lib/Bytecode/Writer/Writer.cpp b/llvm/lib/Bytecode/Writer/Writer.cpp index ec0b250dce8..bfbce91c56e 100644 --- a/llvm/lib/Bytecode/Writer/Writer.cpp +++ b/llvm/lib/Bytecode/Writer/Writer.cpp @@ -1032,7 +1032,7 @@ void BytecodeWriter::outputModuleInfoBlock(const Module *M) { output(SectionNames[i]); // Output the inline asm string. - output(M->getInlineAsm()); + output(M->getModuleInlineAsm()); } void BytecodeWriter::outputInstructions(const Function *F) { |

