Remove isAsCheapAsAMove from v128.const

llvm-svn: 342106
This commit is contained in:
Thomas Lively 2018-09-13 02:50:57 +00:00
parent 17ba6becaa
commit 65825cd7c5
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ foreach SIZE = [2, 4, 8, 16, 32] in
def LaneIdx#SIZE : ImmLeaf<i32, "return 0 <= Imm && Imm < "#SIZE#";">;
multiclass ConstVec<ValueType vec_t, dag ops, dag pat, string args> {
let isMoveImm = 1, isAsCheapAsAMove = 1, isReMaterializable = 1 in
let isMoveImm = 1, isReMaterializable = 1 in
defm CONST_V128_#vec_t : SIMD_I<(outs V128:$dst), ops, (outs), ops,
[(set V128:$dst, (vec_t pat))],
"v128.const\t$dst, "#args,