Add another missing cast for Neon vcombine results.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120639 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bob Wilson 2010-12-02 01:18:18 +00:00
parent c79528a112
commit b322fc2ece

View File

@ -597,7 +597,7 @@ static std::string GenOpString(OpKind op, const std::string &proto,
s += "(" + ts + ")a";
break;
case OpConcat:
s += "__builtin_shufflevector((int64x1_t)a";
s += "(" + ts + ")__builtin_shufflevector((int64x1_t)a";
s += ", (int64x1_t)b, 0, 1)";
break;
case OpHi: