1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

clarify this, apparently it is confusing :)

llvm-svn: 131916
This commit is contained in:
Chris Lattner 2011-05-23 20:17:44 +00:00
parent 6ddbe02441
commit f58c2c02b5

View File

@ -2353,6 +2353,8 @@ store_bit_field). The rem should be replaced with a multiply and subtract:
%3 = sdiv i32 %A, %B
%4 = srem i32 %A, %B
Similarly for udiv/urem.
Similarly for udiv/urem. Note that this shouldn't be done on X86 or ARM,
which can do this in a single operation (instruction or libcall). It is
probably best to do this in the code generator.
//===---------------------------------------------------------------------===//