Skip to content

Commit

Permalink
[jit] Fix wording of the function description
Browse files Browse the repository at this point in the history
  • Loading branch information
kumpera committed May 18, 2017
1 parent 414b5fc commit 45f1fb7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mono/mini/memory-access.c
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,11 @@ mini_emit_memory_init_bytes (MonoCompile *cfg, MonoInst *dest, MonoInst *value,

}

/* If @klass is a VT it copies it's value, if it's a ref type, it copies the pointer itself. */
/*
* If @klass is a valuetype, emit code to copy a value with source address in @src and destination address in @dest.
* If @klass is a ref type, copy a pointer instead.
*/

void
mini_emit_memory_copy (MonoCompile *cfg, MonoInst *dest, MonoInst *src, MonoClass *klass, gboolean native, int ins_flag)
{
Expand Down

0 comments on commit 45f1fb7

Please sign in to comment.