aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/Expr/Expr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Expr/Expr.cpp')
-rw-r--r--lib/Expr/Expr.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Expr/Expr.cpp b/lib/Expr/Expr.cpp
index a28ad907..82c60205 100644
--- a/lib/Expr/Expr.cpp
+++ b/lib/Expr/Expr.cpp
@@ -354,11 +354,7 @@ void ConstantExpr::toString(std::string &Res, unsigned radix) const {
ref<ConstantExpr> ConstantExpr::Concat(const ref<ConstantExpr> &RHS) {
Expr::Width W = getWidth() + RHS->getWidth();
APInt Tmp(value);
-#if LLVM_VERSION_CODE <= LLVM_VERSION(2, 8)
- Tmp.zext(W);
-#else
Tmp=Tmp.zext(W);
-#endif
Tmp <<= RHS->getWidth();
Tmp |= APInt(RHS->value).zext(W);