Remove bunch of gcc 4.3-related warnings from Target


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47369 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp
index d01c2ab..305c8de 100644
--- a/lib/Target/CBackend/CBackend.cpp
+++ b/lib/Target/CBackend/CBackend.cpp
@@ -2912,7 +2912,7 @@
     HasImplicitAddress = false;  // HIA is only true if we haven't addressed yet
   }
 
-  assert(!HasImplicitAddress || (CI && CI->isNullValue()) &&
+  assert((!HasImplicitAddress || (CI && CI->isNullValue())) &&
          "Can only have implicit address with direct accessing");
 
   if (HasImplicitAddress) {