-
Notifications
You must be signed in to change notification settings - Fork 15.3k
Closed
Labels
bugzillaIssues migrated from bugzillaIssues migrated from bugzillaclangClang issues not falling into any other categoryClang issues not falling into any other category
Description
| Bugzilla Link | 52067 |
| Version | trunk |
| OS | Linux |
| CC | @RKSimon,@zygoloid,@rotateright |
Extended Description
#include <stddef.h>
void f(const void *s, void *d, size_t n)
{
__builtin_bcopy((void *)s, d, n);
}Trying to compile this with Clang results in this error:
<source>:5:5: error: cannot compile this builtin function yet
__builtin_bcopy((void *)s, d, n);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
I would assume implementing this is as simple as having it do __builtin_memmove(d, s, n), so it seems odd that this isn't implemented
Metadata
Metadata
Assignees
Labels
bugzillaIssues migrated from bugzillaIssues migrated from bugzillaclangClang issues not falling into any other categoryClang issues not falling into any other category