diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-04-08 16:23:09 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-04-08 16:23:09 +0000 |
| commit | d92123fd2a828f254f2dbcb628b352cc17e80a6b (patch) | |
| tree | 8c90b2a1b382c5d10f9e0ceb0a5bc0611cfbcf0a /clang/lib/CodeGen/CGExprScalar.cpp | |
| parent | 5a82613db05e3a2b7c05a2029b67296d954c5112 (diff) | |
| download | bcm5719-llvm-d92123fd2a828f254f2dbcb628b352cc17e80a6b.tar.gz bcm5719-llvm-d92123fd2a828f254f2dbcb628b352cc17e80a6b.zip | |
Make sure value is initialized when built w/o asserts.
llvm-svn: 68615
Diffstat (limited to 'clang/lib/CodeGen/CGExprScalar.cpp')
| -rw-r--r-- | clang/lib/CodeGen/CGExprScalar.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGExprScalar.cpp b/clang/lib/CodeGen/CGExprScalar.cpp index 3a24af49531..928ad29ab79 100644 --- a/clang/lib/CodeGen/CGExprScalar.cpp +++ b/clang/lib/CodeGen/CGExprScalar.cpp @@ -854,6 +854,7 @@ Value *ScalarExprEmitter::EmitOverflowCheckedBinOp(const BinOpInfo &Ops) { break; default: assert(false && "Unsupported operation for overflow detection"); + IID = 0; } OpID <<= 1; OpID |= 1; |

