diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-04-04 00:55:21 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-04-04 00:55:21 +0000 |
commit | 6c656c3d89523d8ddd143f96e11f6bc16c10c60b (patch) | |
tree | 9ca544f82ce072f4d4909a9fa2fa170d9a3db888 /lib/Sema/SemaChecking.cpp | |
parent | 7b156ddae822a546aa9e8b23d683ac76da8e8ac8 (diff) |
Remove dead assignment to local variable.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@153985 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaChecking.cpp')
-rw-r--r-- | lib/Sema/SemaChecking.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Sema/SemaChecking.cpp b/lib/Sema/SemaChecking.cpp index 0e2eb3c701..74832fd32e 100644 --- a/lib/Sema/SemaChecking.cpp +++ b/lib/Sema/SemaChecking.cpp @@ -1176,7 +1176,6 @@ bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) { "promotion from float to double is the only expected cast here"); Cast->setSubExpr(0); TheCall->setArg(NumArgs-1, CastArg); - OrigArg = CastArg; } } |