diff options
author | Duncan Sands <baldrick@free.fr> | 2013-03-01 09:46:03 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2013-03-01 09:46:03 +0000 |
commit | 4d9b7c234fd2510c27e6d74a3f0653efc0141580 (patch) | |
tree | 1b8dc24c8c54ff13cb4bbbbaebe57032bbc01afa | |
parent | 14809fd5261356365de670ef7ddf9103bb0ae6ba (diff) |
GCC thinks that this variable might be used uninitialized (it isn't).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176341 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/AsmParser/X86AsmParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/AsmParser/X86AsmParser.cpp b/lib/Target/X86/AsmParser/X86AsmParser.cpp index b2c6d55026..ee5c2b2bfd 100644 --- a/lib/Target/X86/AsmParser/X86AsmParser.cpp +++ b/lib/Target/X86/AsmParser/X86AsmParser.cpp @@ -2080,7 +2080,7 @@ MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode, // Check for the various suffix matches. Tmp[Base.size()] = Suffixes[0]; unsigned ErrorInfoIgnore; - unsigned ErrorInfoMissingFeature; + unsigned ErrorInfoMissingFeature = 0; // Init suppresses compiler warnings. unsigned Match1, Match2, Match3, Match4; Match1 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore, |