commit | 83e471180c48e785316a5232387d4d96e841047e | [log] [tgz] |
---|---|---|
author | Nick Lewycky <nicholas@mxc.ca> | Wed Sep 29 23:32:20 2010 +0000 |
committer | Nick Lewycky <nicholas@mxc.ca> | Wed Sep 29 23:32:20 2010 +0000 |
tree | 3c8ef0a683ee7c273ad916c8e01bb64ae67485d0 | |
parent | 74c06b202fba4a92b59c2c529f37350130ca2073 [diff] [blame] |
Silence compiler warning. llvm-svn: 115107
diff --git a/llvm/lib/AsmParser/LLParser.cpp b/llvm/lib/AsmParser/LLParser.cpp index e940f4a..c4fce2b 100644 --- a/llvm/lib/AsmParser/LLParser.cpp +++ b/llvm/lib/AsmParser/LLParser.cpp
@@ -1248,7 +1248,7 @@ AteExtraComma = true; return false; } - unsigned Idx; + unsigned Idx = 0; if (ParseUInt32(Idx)) return true; Indices.push_back(Idx); }