summaryrefslogtreecommitdiff
path: root/testsuite/tests/codeGen/should_gen_asm/memcpy.cmm
blob: 0ff16639ef0a51605b2fef50e2774501873232b8 (plain)
1
2
3
4
5
6
7
8
#include "Cmm.h"

// Large memcpy's should lower to calls.
callMemcpy (W_ dst, W_ src)
{
  prim %memcpy(dst, src, 1024, 4);
  return ();
}