diff options
| author | Anders Carlsson <andersca@mac.com> | 2008-12-01 02:25:52 +0000 | 
|---|---|---|
| committer | Anders Carlsson <andersca@mac.com> | 2008-12-01 02:25:52 +0000 | 
| commit | e7c2ac4b54a520b57b48fc66918cae215153491b (patch) | |
| tree | ab852f57ee92f245ad161982a0fe2b1224a6d644 /clang/lib/AST/Expr.cpp | |
| parent | 1dbffc6e3661938392895c33a28feab5b01ea99e (diff) | |
| download | bcm5719-llvm-e7c2ac4b54a520b57b48fc66918cae215153491b.tar.gz bcm5719-llvm-e7c2ac4b54a520b57b48fc66918cae215153491b.zip | |
Remove dead code.
llvm-svn: 60320
Diffstat (limited to 'clang/lib/AST/Expr.cpp')
| -rw-r--r-- | clang/lib/AST/Expr.cpp | 3 | 
1 files changed, 0 insertions, 3 deletions
| diff --git a/clang/lib/AST/Expr.cpp b/clang/lib/AST/Expr.cpp index a4f7f8bf40e..4c86ce67efa 100644 --- a/clang/lib/AST/Expr.cpp +++ b/clang/lib/AST/Expr.cpp @@ -1051,9 +1051,6 @@ bool Expr::isNullPointerConstant(EvalResult &Result, ASTContext &Ctx) const {    // test for the value 0.    return Evaluate(Result, Ctx) && !Result.HasSideEffects &&        Result.Val.isInt() && Result.Val.getInt() == 0; - -  llvm::APSInt Val(32); -  return isIntegerConstantExpr(Val, Ctx, 0, true) && Val == 0;  }  /// isBitField - Return true if this expression is a bit-field. | 

