1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[CodeGen] s/constexpr/LLVM_CONSTEXPR/ in MachineMemOperand.h.

llvm-svn: 275441
This commit is contained in:
Justin Lebar 2016-07-14 17:16:40 +00:00
parent 7273ff2021
commit 2fcb5c4212

View File

@ -90,11 +90,11 @@ struct MachinePointerInfo {
class MachineMemOperand { class MachineMemOperand {
public: public:
// This is the number of bits we need to represent flags. // 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. // Target hints allow target passes to annotate memory operations.
static constexpr unsigned MOTargetStartBit = 5; static LLVM_CONSTEXPR unsigned MOTargetStartBit = 5;
static constexpr unsigned MOTargetNumBits = 3; static LLVM_CONSTEXPR unsigned MOTargetNumBits = 3;
/// Flags values. These may be or'd together. /// Flags values. These may be or'd together.
enum Flags : uint16_t { enum Flags : uint16_t {