diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-05 20:11:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-05 20:11:45 +0000 |
commit | 5c06a20814875d4b073204d5662491a4d00d7880 (patch) | |
tree | 0c37d55c54fabfde65df2d9cd7553529db00be63 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | c4ae94dee8c9a07334de7ffd85c45893208cca77 (diff) |
lowering a volatile llvm.memcpy to a libc memcpy is ok.
PR6779
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100457 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 103872fe2a..9b1e963f99 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -3519,7 +3519,6 @@ SDValue SelectionDAG::getMemcpy(SDValue Chain, DebugLoc dl, SDValue Dst, } // Emit a library call. - assert(!isVol && "library memcpy does not support volatile"); TargetLowering::ArgListTy Args; TargetLowering::ArgListEntry Entry; Entry.Ty = TLI.getTargetData()->getIntPtrType(*getContext()); |