1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

lowering a volatile llvm.memcpy to a libc memcpy is ok.

PR6779

llvm-svn: 100457
This commit is contained in:
Chris Lattner 2010-04-05 20:11:45 +00:00
parent 2aff0055c1
commit 7d609ea6cb

View File

@ -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());