commit | fe37e6279ebbb4ba1eede4bcb8dfe732f0bbcb38 | [log] [tgz] |
---|---|---|
author | Tim Northover <Tim.Northover@arm.com> | Wed Mar 27 13:15:08 2013 +0000 |
committer | Tim Northover <Tim.Northover@arm.com> | Wed Mar 27 13:15:08 2013 +0000 |
tree | a446fb5fd4081a9c01764d6fdd47705782724bd3 | |
parent | f647052d5f4504edffb8ffa8fe71cb9451997641 [diff] [blame] |
Switch to LLVM support function abs64 to keep VS2008 happy. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178141 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/Hexagon/HexagonHardwareLoops.cpp b/lib/Target/Hexagon/HexagonHardwareLoops.cpp index 62aed13..a46b8d3 100644 --- a/lib/Target/Hexagon/HexagonHardwareLoops.cpp +++ b/lib/Target/Hexagon/HexagonHardwareLoops.cpp
@@ -701,7 +701,7 @@ // If the induction variable bump is not a power of 2, quit. // Othwerise we'd need a general integer division. - if (!isPowerOf2_64(abs(IVBump))) + if (!isPowerOf2_64(abs64(IVBump))) return 0; MachineBasicBlock *PH = Loop->getLoopPreheader();