Changed isBuildVectorAllOnesInteger to isBuildVectorAllOnes.
authorEvan Cheng <evan.cheng@apple.com>
Mon, 27 Mar 2006 06:59:32 +0000 (06:59 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Mon, 27 Mar 2006 06:59:32 +0000 (06:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27166 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/TargetSelectionDAG.td

index c146fa9a8cd3ac86d3a1be915e06e4834b317f3b..2fbe476770838e1e0bc0a2617d38e296db9de208 100644 (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);