Remove 'const' from some ArrayRefs. ArrayRefs are already immutable. NFC
[oota-llvm.git] / lib / Target / Mips / MCTargetDesc / MipsABIInfo.h
index cb3df44c800cc4424b548257bad78eda2d18bb12..ffa2c765e79bcd915774aa55c6c8fdca337cb0b7 100644 (file)
@@ -47,10 +47,10 @@ public:
   ABI GetEnumValue() const { return ThisABI; }
 
   /// The registers to use for byval arguments.
-  const ArrayRef<MCPhysReg> GetByValArgRegs() const;
+  ArrayRef<MCPhysReg> GetByValArgRegs() const;
 
   /// The registers to use for the variable argument list.
-  const ArrayRef<MCPhysReg> GetVarArgRegs() const;
+  ArrayRef<MCPhysReg> GetVarArgRegs() const;
 
   /// Obtain the size of the area allocated by the callee for arguments.
   /// CallingConv::FastCall affects the value for O32.