diff options
Diffstat (limited to 'include/llvm/Instructions.h')
-rw-r--r-- | include/llvm/Instructions.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index 273c9951c6..118a42d515 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -31,6 +31,10 @@ 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 //===----------------------------------------------------------------------===// |