1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

add a note

llvm-svn: 24572
This commit is contained in:
Chris Lattner 2005-12-02 00:11:20 +00:00
parent b5cc216fad
commit a2a404ff3a

View File

@ -12,6 +12,12 @@ long long test(long long X, long long Y) { return X*Y; }
by using the EAX result from the mul. We should add a similar node for
DIVREM.
another case is:
long long test(int X, int Y) { return (long long)X*Y; }
... which should only be one imul instruction.
//===---------------------------------------------------------------------===//
This should be one DIV/IDIV instruction, not a libcall: