mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-06 11:29:27 +00:00
No, seriously folks, memcpy really does return void.
llvm-svn: 21575
This commit is contained in:
parent
270f03e49e
commit
47a20efcb0
@ -535,7 +535,7 @@ public:
|
||||
{
|
||||
// Just make sure this has 4 arguments per LLVM spec.
|
||||
return (f->arg_size() == 4) &&
|
||||
(f->getReturnType() == PointerType::get(Type::VoidTy));
|
||||
(f->getReturnType() == Type::VoidTy);
|
||||
}
|
||||
|
||||
/// Because of alignment and instruction information that we don't have, we
|
||||
|
Loading…
x
Reference in New Issue
Block a user