aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-10-30 20:39:19 +0000
committerChad Rosier <mcrosier@apple.com>2012-10-30 20:39:19 +0000
commitdaeec8fad3a3038247df1e5081b74454e7ee9315 (patch)
treecd62d5426ed84f5cfe66990901e7404be6b8c77e /lib
parenta9779bfbc9ab0cf3f157453fd0afd110b04a9fdc (diff)
downloadexternal_llvm-daeec8fad3a3038247df1e5081b74454e7ee9315.zip
external_llvm-daeec8fad3a3038247df1e5081b74454e7ee9315.tar.gz
external_llvm-daeec8fad3a3038247df1e5081b74454e7ee9315.tar.bz2
[inline asm] Get the mayLoad/mayStore directly from the MIOp_ExtraInfo operand.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167050 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/SelectionDAG/InstrEmitter.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/CodeGen/SelectionDAG/InstrEmitter.cpp b/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
index 5fc71cc..a8381b2 100644
--- a/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
+++ b/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
@@ -897,19 +897,13 @@ EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned,
const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol();
MI->addOperand(MachineOperand::CreateES(AsmStr));
- // Add the HasSideEffect and isAlignStack bits.
+ // Add the HasSideEffect, isAlignStack, AsmDialect, MayLoad and MayStore
+ // bits.
int64_t ExtraInfo =
cast<ConstantSDNode>(Node->getOperand(InlineAsm::Op_ExtraInfo))->
getZExtValue();
MI->addOperand(MachineOperand::CreateImm(ExtraInfo));
- // Set the MayLoad and MayStore flags.
- if (ExtraInfo & InlineAsm::Extra_MayLoad)
- MI->setFlag(MachineInstr::MayLoad);
-
- if (ExtraInfo & InlineAsm::Extra_MayStore)
- MI->setFlag(MachineInstr::MayStore);
-
// Remember to operand index of the group flags.
SmallVector<unsigned, 8> GroupIdx;