mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-12 07:40:58 +00:00
add memset and memcpy, though they are always available for now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125973 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a84b2ffac5
commit
398c0d8b74
@ -17,6 +17,12 @@ namespace llvm {
|
||||
|
||||
namespace LibFunc {
|
||||
enum Func {
|
||||
/// void *memset(void *b, int c, size_t len);
|
||||
memset,
|
||||
|
||||
// void *memcpy(void *s1, const void *s2, size_t n);
|
||||
memcpy,
|
||||
|
||||
/// void memset_pattern16(void *b, const void *pattern16, size_t len);
|
||||
memset_pattern16,
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user