[jit] Fix wording of the function description
authorRodrigo Kumpera <kumpera@gmail.com>
Thu, 11 May 2017 23:32:09 +0000 (16:32 -0700)
committerRodrigo Kumpera <kumpera@gmail.com>
Thu, 18 May 2017 01:51:19 +0000 (18:51 -0700)
mono/mini/memory-access.c

index 53229f861de67d70bccd51496200d62cd3fd25ea..f6030b0cbd0dec35f0822fb0c741c8a27a55bc3a 100644 (file)
@@ -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)
 {