Fix test/Regression/Assembler/2006-12-09-Cast-To-Bool.ll
authorReid Spencer <rspencer@reidspencer.com>
Sat, 9 Dec 2006 19:40:41 +0000 (19:40 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sat, 9 Dec 2006 19:40:41 +0000 (19:40 +0000)
Do not upgrade casts of bool to bool.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32404 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-upgrade/UpgradeParser.y

index 126a37542e686cb4e1d87c433681a4acc2c6de0a..5a4118d8d74d7693bc450bd42e1e2b1b4b24e0dc 100644 (file)
@@ -188,7 +188,7 @@ static std::string getCastUpgrade(
     SrcTy.destroy();
     SrcTy.newTy = new std::string("ulong");
     SrcTy.oldTy = ULongTy;
-  } else if (DstTy.oldTy == BoolTy) {
+  } else if (DstTy.oldTy == BoolTy && SrcTy.oldTy != BoolTy) {
     // cast ptr %x to  bool was previously defined as setne ptr %x, null
     // The ptrtoint semantic is to truncate, not compare so we must retain
     // the original intent by replace the cast with a setne