diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-19 07:34:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-19 07:34:02 +0000 |
commit | 80b65db862eac831869fcb4e2bfdd2fc381be36f (patch) | |
tree | 65f4eee70e8df34e55d59481c1f47b7438ce8ede /llvm/tools/llvm-upgrade/UpgradeParser.y.cvs | |
parent | 544a6336561c087f862a042e3e318a9150cf31a5 (diff) | |
download | bcm5719-llvm-80b65db862eac831869fcb4e2bfdd2fc381be36f.tar.gz bcm5719-llvm-80b65db862eac831869fcb4e2bfdd2fc381be36f.zip |
remove use of deprecated api
llvm-svn: 34416
Diffstat (limited to 'llvm/tools/llvm-upgrade/UpgradeParser.y.cvs')
-rw-r--r-- | llvm/tools/llvm-upgrade/UpgradeParser.y.cvs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/tools/llvm-upgrade/UpgradeParser.y.cvs b/llvm/tools/llvm-upgrade/UpgradeParser.y.cvs index df472cc21f1..9b2f09c196d 100644 --- a/llvm/tools/llvm-upgrade/UpgradeParser.y.cvs +++ b/llvm/tools/llvm-upgrade/UpgradeParser.y.cvs @@ -999,7 +999,7 @@ getBinaryOp(BinaryOps op, const Type *Ty, Signedness Sign) { // types of its operands. bool isFP = Ty->isFloatingPoint(); if (const VectorType* PTy = dyn_cast<VectorType>(Ty)) - // If its a packed type we want to use the element type + // If its a vector type we want to use the element type isFP = PTy->getElementType()->isFloatingPoint(); if (isFP) return Instruction::FDiv; @@ -1015,7 +1015,7 @@ getBinaryOp(BinaryOps op, const Type *Ty, Signedness Sign) { // types of its operands. bool isFP = Ty->isFloatingPoint(); if (const VectorType* PTy = dyn_cast<VectorType>(Ty)) - // If its a packed type we want to use the element type + // If its a vector type we want to use the element type isFP = PTy->getElementType()->isFloatingPoint(); // Select correct opcode if (isFP) @@ -1841,7 +1841,7 @@ UpRTypes $$.S = $4.S; delete $4.PAT; } - | '<' EUINT64VAL 'x' UpRTypes '>' { // Packed array type? + | '<' EUINT64VAL 'x' UpRTypes '>' { // Vector type? const llvm::Type* ElemTy = $4.PAT->get(); if ((unsigned)$2 != $2) error("Unsigned result not equal to signed result"); @@ -2235,7 +2235,7 @@ ConstExpr upgradeGEPIndices($3.C->getType(), $4, VIndices, &CIndices); delete $4; - $$.C = ConstantExpr::getGetElementPtr($3.C, CIndices); + $$.C = ConstantExpr::getGetElementPtr($3.C, &CIndices[0], CIndices.size()); $$.S = Signless; } | SELECT '(' ConstVal ',' ConstVal ',' ConstVal ')' { @@ -3112,7 +3112,7 @@ InstVal error("Arithmetic operator requires integer, FP, or packed operands"); if (isa<VectorType>(Ty) && ($1 == URemOp || $1 == SRemOp || $1 == FRemOp || $1 == RemOp)) - error("Remainder not supported on packed types"); + error("Remainder not supported on vector types"); // Upgrade the opcode from obsolete versions before we do anything with it. Instruction::BinaryOps Opcode = getBinaryOp($1, Ty, $2.S); Value* val1 = getVal(Ty, $3); |