search for: newfnnam

Displaying 1 result from an estimated 1 matches for "newfnnam".

Did you mean: newfnname
2011 May 26
0
[LLVMdev] x86 SSE4.2 CRC32 intrinsics renamed
...ade.cpp Thu May 26 18:13:19 2011 > @@ -285,7 +285,33 @@ > } > > break; > - case 'x': > + case 'x': > + // This fixes the poorly named crc32 intrinsics > + if (Name.compare(5, 13, "x86.sse42.crc", 13) == 0) { > + const char* NewFnName = NULL; > + if (Name.compare(18, 2, "32", 2) == 0) { > + if (Name.compare(20, 2, ".8") == 0) { > + NewFnName = "llvm.x86.sse42.crc32.32.8"; > + } else if (Name.compare(20, 2, ".16") == 0) { > + NewFnName =...