diff options
| author | Dale Johannesen <dalej@apple.com> | 2009-10-21 23:28:00 +0000 |
|---|---|---|
| committer | Dale Johannesen <dalej@apple.com> | 2009-10-21 23:28:00 +0000 |
| commit | 1cfb958b0014313ab53bfeb7422f8066eed583bc (patch) | |
| tree | 738a6f39851851ee75cc6a61b01c830e3e3ea692 /llvm/lib/Bitcode/Reader/BitcodeReader.cpp | |
| parent | 22146fbc5f31892e2e72f696ef03c6d9ea68040b (diff) | |
| download | bcm5719-llvm-1cfb958b0014313ab53bfeb7422f8066eed583bc.tar.gz bcm5719-llvm-1cfb958b0014313ab53bfeb7422f8066eed583bc.zip | |
Rename msasm to alignstack per review.
llvm-svn: 84795
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
| -rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index c9eba24b823..7f3be2b84a6 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -1165,7 +1165,7 @@ bool BitcodeReader::ParseConstants() { if (Record.size() < 2) return Error("Invalid INLINEASM record"); std::string AsmStr, ConstrStr; bool HasSideEffects = Record[0] & 1; - bool IsMsAsm = Record[0] >> 1; + bool IsAlignStack = Record[0] >> 1; unsigned AsmStrSize = Record[1]; if (2+AsmStrSize >= Record.size()) return Error("Invalid INLINEASM record"); @@ -1179,7 +1179,7 @@ bool BitcodeReader::ParseConstants() { ConstrStr += (char)Record[3+AsmStrSize+i]; const PointerType *PTy = cast<PointerType>(CurTy); V = InlineAsm::get(cast<FunctionType>(PTy->getElementType()), - AsmStr, ConstrStr, HasSideEffects, IsMsAsm); + AsmStr, ConstrStr, HasSideEffects, IsAlignStack); break; } } |

