diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2008-02-16 01:24:58 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2008-02-16 01:24:58 +0000 |
commit | 9b254eed320283371ee43f900e76794c3991957e (patch) | |
tree | d5b65d5cff5240a980e09ee4d6cd995ee077bb79 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 27055194b769d52c89fead4a4dc3614266fa59ba (diff) | |
download | bcm5719-llvm-9b254eed320283371ee43f900e76794c3991957e.tar.gz bcm5719-llvm-9b254eed320283371ee43f900e76794c3991957e.zip |
llvm.memory.barrier, and impl for x86 and alpha
llvm-svn: 47204
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index f8e1fea679c..c12c98b4e39 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -3792,6 +3792,7 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const { return "<<Unknown Target Node>>"; } + case ISD::MEMBARRIER: return "MemBarrier"; case ISD::PCMARKER: return "PCMarker"; case ISD::READCYCLECOUNTER: return "ReadCycleCounter"; case ISD::SRCVALUE: return "SrcValue"; |