aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2009-10-21 23:28:00 +0000
committerDale Johannesen <dalej@apple.com>2009-10-21 23:28:00 +0000
commit1cfb958b0014313ab53bfeb7422f8066eed583bc (patch)
tree738a6f39851851ee75cc6a61b01c830e3e3ea692 /llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
parent22146fbc5f31892e2e72f696ef03c6d9ea68040b (diff)
downloadllvm-1cfb958b0014313ab53bfeb7422f8066eed583bc.zip
llvm-1cfb958b0014313ab53bfeb7422f8066eed583bc.tar.gz
llvm-1cfb958b0014313ab53bfeb7422f8066eed583bc.tar.bz2
Rename msasm to alignstack per review.
llvm-svn: 84795
Diffstat (limited to 'llvm/lib/Bitcode/Writer/BitcodeWriter.cpp')
-rw-r--r--llvm/lib/Bitcode/Writer/BitcodeWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
index 3e4c823..a8c1ef7 100644
--- a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
+++ b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
@@ -678,7 +678,7 @@ static void WriteConstants(unsigned FirstVal, unsigned LastVal,
if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
Record.push_back(unsigned(IA->hasSideEffects()) |
- unsigned(IA->isMsAsm()) << 1);
+ unsigned(IA->isAlignStack()) << 1);
// Add the asm string.
const std::string &AsmStr = IA->getAsmString();