mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-29 14:40:25 +00:00
No, seriously folks, memcpy really does return void.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21575 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a525f6d8f5
commit
47a3785062
@ -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…
Reference in New Issue
Block a user