From efbf9c8d5a338488c68782f06e41f21fddf7b36a Mon Sep 17 00:00:00 2001 From: Justin Lebar Date: Thu, 14 Jul 2016 17:16:40 +0000 Subject: [PATCH] [CodeGen] s/constexpr/LLVM_CONSTEXPR/ in MachineMemOperand.h. llvm-svn: 275441 --- llvm/include/llvm/CodeGen/MachineMemOperand.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/include/llvm/CodeGen/MachineMemOperand.h b/llvm/include/llvm/CodeGen/MachineMemOperand.h index b2d7673..40b0ae5 100644 --- a/llvm/include/llvm/CodeGen/MachineMemOperand.h +++ b/llvm/include/llvm/CodeGen/MachineMemOperand.h @@ -90,11 +90,11 @@ struct MachinePointerInfo { class MachineMemOperand { public: // This is the number of bits we need to represent flags. - static constexpr unsigned MOMaxBits = 8; + static LLVM_CONSTEXPR unsigned MOMaxBits = 8; // Target hints allow target passes to annotate memory operations. - static constexpr unsigned MOTargetStartBit = 5; - static constexpr unsigned MOTargetNumBits = 3; + static LLVM_CONSTEXPR unsigned MOTargetStartBit = 5; + static LLVM_CONSTEXPR unsigned MOTargetNumBits = 3; /// Flags values. These may be or'd together. enum Flags : uint16_t { -- 2.7.4