diff options
author | Dan Gohman <gohman@apple.com> | 2009-09-25 23:33:20 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-09-25 23:33:20 +0000 |
commit | 232e4448242ec67d6a7b48906002ab7c3f7af96c (patch) | |
tree | 2d1abf112fa619902819418ada0168ae95cc1d8e /include | |
parent | 75b79e54a4fd0ea94c2bc91ab7ac3c6248d1af5c (diff) | |
download | external_llvm-232e4448242ec67d6a7b48906002ab7c3f7af96c.zip external_llvm-232e4448242ec67d6a7b48906002ab7c3f7af96c.tar.gz external_llvm-232e4448242ec67d6a7b48906002ab7c3f7af96c.tar.bz2 |
Move MachineMemOperand::getAlignment out of line, to avoid needing
MathExtras.h in MachineMemOperand.h.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82822 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/MachineMemOperand.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/MachineMemOperand.h b/include/llvm/CodeGen/MachineMemOperand.h index dd70b81..b7e267d 100644 --- a/include/llvm/CodeGen/MachineMemOperand.h +++ b/include/llvm/CodeGen/MachineMemOperand.h @@ -16,8 +16,6 @@ #ifndef LLVM_CODEGEN_MACHINEMEMOPERAND_H #define LLVM_CODEGEN_MACHINEMEMOPERAND_H -#include "llvm/Support/MathExtras.h" - namespace llvm { class Value; @@ -76,9 +74,7 @@ public: /// getAlignment - Return the minimum known alignment in bytes of the /// actual memory reference. - uint64_t getAlignment() const { - return MinAlign(getBaseAlignment(), getOffset()); - } + uint64_t getAlignment() const; /// getBaseAlignment - Return the minimum known alignment in bytes of the /// base address, without the offset. |