aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Bitcode/Reader
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
commit5ee3e4bf7e162b8daf43c2fd660f67095d00af3a (patch)
tree86f4991953c35b62870c5621427dcdcd1f392bd8 /lib/Bitcode/Reader
parent87c2b24e57deea38e8cf572a0c461bfc21296996 (diff)
downloadexternal_llvm-5ee3e4bf7e162b8daf43c2fd660f67095d00af3a.zip
external_llvm-5ee3e4bf7e162b8daf43c2fd660f67095d00af3a.tar.gz
external_llvm-5ee3e4bf7e162b8daf43c2fd660f67095d00af3a.tar.bz2
Rename msasm to alignstack per review.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84795 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode/Reader')
-rw-r--r--lib/Bitcode/Reader/BitcodeReader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Bitcode/Reader/BitcodeReader.cpp b/lib/Bitcode/Reader/BitcodeReader.cpp
index c9eba24..7f3be2b 100644
--- a/lib/Bitcode/Reader/BitcodeReader.cpp
+++ b/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;
}
}