1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Changed isBuildVectorAllOnesInteger to isBuildVectorAllOnes.

llvm-svn: 27166
This commit is contained in:
Evan Cheng 2006-03-27 06:59:32 +00:00
parent 4667bd17cb
commit 2a36326bb0

View File

@ -384,7 +384,7 @@ def vtFP : PatLeaf<(vt), [{ return MVT::isFloatingPoint(N->getVT()); }]>;
def immAllOnes : PatLeaf<(imm), [{ return N->isAllOnesValue(); }]>;
def immAllOnesV: PatLeaf<(build_vector), [{
return ISD::isBuildVectorAllOnesInteger(N);
return ISD::isBuildVectorAllOnes(N);
}]>;
def immAllZerosV: PatLeaf<(build_vector), [{
return ISD::isBuildVectorAllZeros(N);