Open
Description
Bugzilla Link | 52168 |
Version | trunk |
OS | Linux |
CC | @ecnelises,@RKSimon |
Extended Description
__int128 b(__int128 j)
{
return j / 5;
}
This can be inlined into a series of operations avoiding the division, but LLVM just outputs a call to __divti3. GCC does this optimization.