mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 21:32:10 +00:00
Add missing const
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202074 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
71e23f0d88
commit
3246123cff
@ -1493,7 +1493,8 @@ public:
|
||||
/// undefined. isBigEndian describes the endianness of the target.
|
||||
bool isConstantSplat(APInt &SplatValue, APInt &SplatUndef,
|
||||
unsigned &SplatBitSize, bool &HasAnyUndefs,
|
||||
unsigned MinSplatBits = 0, bool isBigEndian = false);
|
||||
unsigned MinSplatBits = 0,
|
||||
bool isBigEndian = false) const;
|
||||
|
||||
bool isConstant() const;
|
||||
|
||||
|
@ -6483,7 +6483,7 @@ bool BuildVectorSDNode::isConstantSplat(APInt &SplatValue,
|
||||
unsigned &SplatBitSize,
|
||||
bool &HasAnyUndefs,
|
||||
unsigned MinSplatBits,
|
||||
bool isBigEndian) {
|
||||
bool isBigEndian) const {
|
||||
EVT VT = getValueType(0);
|
||||
assert(VT.isVector() && "Expected a vector type");
|
||||
unsigned sz = VT.getSizeInBits();
|
||||
|
Loading…
Reference in New Issue
Block a user