diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-08-31 23:54:38 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-08-31 23:54:38 +0000 |
commit | 39de024e66bae6135c5ec35c343a81b95c1a93cf (patch) | |
tree | 16415578e9b2ac419be0cf4c58500320c3a3eec5 /clang | |
parent | 680e177833bb37e6725cae02b5ac0b6cb54d7e03 (diff) | |
download | bcm5719-llvm-39de024e66bae6135c5ec35c343a81b95c1a93cf.tar.gz bcm5719-llvm-39de024e66bae6135c5ec35c343a81b95c1a93cf.zip |
Prevent warning when built with assert off.
llvm-svn: 112680
Diffstat (limited to 'clang')
-rw-r--r-- | clang/lib/Lex/LiteralSupport.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Lex/LiteralSupport.cpp b/clang/lib/Lex/LiteralSupport.cpp index c758b400325..fb543d0f03b 100644 --- a/clang/lib/Lex/LiteralSupport.cpp +++ b/clang/lib/Lex/LiteralSupport.cpp @@ -217,6 +217,7 @@ static void ProcessUCNEscape(const char *&ThisTokBuf, const char *ThisTokEnd, return; } if (wide) { + (void)UcnLenSave; assert(UcnLenSave == 4 && "ProcessUCNEscape - only ucn length of 4 supported"); // little endian assumed. |