From 976d8d982e8acd9907d65eaf5e9008d9bbf29782 Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 2 Oct 2021 00:03:27 +0200 Subject: Naively switched from inline assembly to std library --- Opcode/Ice/IceMemoryMacros.h | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) (limited to 'Opcode/Ice/IceMemoryMacros.h') diff --git a/Opcode/Ice/IceMemoryMacros.h b/Opcode/Ice/IceMemoryMacros.h index 490ecd1..53bce50 100644 --- a/Opcode/Ice/IceMemoryMacros.h +++ b/Opcode/Ice/IceMemoryMacros.h @@ -47,23 +47,7 @@ //! \warning writes nb*4 bytes ! inline_ void StoreDwords(udword* dest, udword nb, udword value) { - // The asm code below **SHOULD** be equivalent to one of those C versions - // or the other if your compiled is good: (checked on VC++ 6.0) - // - // 1) while(nb--) *dest++ = value; - // - // 2) for(udword i=0;i