mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Remove the variable only used by assert to avoid the build failure
caused by build options [-Werror,-Wunused-variable]. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195905 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cdd732cdd3
commit
91e710c3dd
@ -4241,8 +4241,8 @@ AArch64TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
|
||||
// Test if V1 is a CONCAT_VECTORS.
|
||||
if (V1.getOpcode() == ISD::CONCAT_VECTORS) {
|
||||
if (V1.getOperand(1).getOpcode() == ISD::UNDEF) {
|
||||
int V1EltNum = V1.getOperand(0).getValueType().getVectorNumElements();
|
||||
assert((Lane < V1EltNum) && "Invalid vector lane access");
|
||||
assert((Lane < V1.getOperand(0).getValueType().getVectorNumElements())
|
||||
&& "Invalid vector lane access");
|
||||
return DAG.getNode(AArch64ISD::NEON_VDUPLANE, dl, VT, V1.getOperand(0),
|
||||
DAG.getConstant(Lane, MVT::i64));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user