From: Chandler Carruth Date: Wed, 8 Dec 2010 01:29:17 +0000 (+0000) Subject: Silence an unused variable warning. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9d8231afec576559a73b352678b30452e1e83232;p=clang Silence an unused variable warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@121221 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGBuiltin.cpp b/lib/CodeGen/CGBuiltin.cpp index 318c02aa43..d0bc709c54 100644 --- a/lib/CodeGen/CGBuiltin.cpp +++ b/lib/CodeGen/CGBuiltin.cpp @@ -1169,6 +1169,7 @@ Value *CodeGenFunction::EmitARMBuiltinExpr(unsigned BuiltinID, bool usgn = type & 0x08; bool quad = type & 0x10; bool poly = (type & 0x7) == 5 || (type & 0x7) == 6; + (void)poly; // Only used in assert()s. bool splat = false; bool rightShift = false;