aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis/TargetFolder.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Analysis/TargetFolder.h')
-rw-r--r--include/llvm/Analysis/TargetFolder.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/llvm/Analysis/TargetFolder.h b/include/llvm/Analysis/TargetFolder.h
index 8a7fc7c..587a7ef 100644
--- a/include/llvm/Analysis/TargetFolder.h
+++ b/include/llvm/Analysis/TargetFolder.h
@@ -211,6 +211,13 @@ public:
return Fold(ConstantExpr::getTruncOrBitCast(C, DestTy));
}
+ Constant *CreatePointerBitCastOrAddrSpaceCast(Constant *C,
+ Type *DestTy) const {
+ if (C->getType() == DestTy)
+ return C; // avoid calling Fold
+ return Fold(ConstantExpr::getPointerBitCastOrAddrSpaceCast(C, DestTy));
+ }
+
//===--------------------------------------------------------------------===//
// Compare Instructions
//===--------------------------------------------------------------------===//