diff options
-rw-r--r-- | include/llvm/Instructions.h | 4 | ||||
-rw-r--r-- | include/llvm/Value.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index 118a42d515..273c9951c6 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -31,10 +31,6 @@ class APInt; class LLVMContext; class DominatorTree; -/// MaximumAlignment - This is the greatest alignment value supported by -/// load, store, and alloca instructions. -static const unsigned MaximumAlignment = 1u << 29; - //===----------------------------------------------------------------------===// // AllocaInst Class //===----------------------------------------------------------------------===// diff --git a/include/llvm/Value.h b/include/llvm/Value.h index 049667749b..0f4c522d37 100644 --- a/include/llvm/Value.h +++ b/include/llvm/Value.h @@ -401,6 +401,10 @@ public: enum { NumLowBitsAvailable = 2 }; }; +/// MaximumAlignment - This is the greatest alignment value supported by +/// load, store, and alloca instructions, and global values. +static const unsigned MaximumAlignment = 1u << 29; + } // End llvm namespace #endif |