diff options
author | Chris Lattner <sabre@nondot.org> | 2008-10-12 00:26:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-10-12 00:26:57 +0000 |
commit | f6e764fe722440eaed18dad9eeff3d7e89a4d7af (patch) | |
tree | 6fcaf0667cc033ce9e81eb600bad946f4e73f7fa | |
parent | 7a4f004a77421af876152281b92c4f8ea24afb2d (diff) |
silence a bunch of warnings in a release-assert build.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57390 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/AST/ASTContext.cpp | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp index fc24f5fe31..572e003dd7 100644 --- a/lib/AST/ASTContext.cpp +++ b/lib/AST/ASTContext.cpp @@ -557,7 +557,7 @@ QualType ASTContext::getASQualType(QualType T, unsigned AddressSpace) { // Get the new insert position for the node we care about. ASQualType *NewIP = ASQualTypes.FindNodeOrInsertPos(ID, InsertPos); - assert(NewIP == 0 && "Shouldn't be in the map!"); + assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP; } ASQualType *New = new ASQualType(T.getTypePtr(), Canonical, AddressSpace); ASQualTypes.InsertNode(New, InsertPos); @@ -586,7 +586,7 @@ QualType ASTContext::getComplexType(QualType T) { // Get the new insert position for the node we care about. ComplexType *NewIP = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos); - assert(NewIP == 0 && "Shouldn't be in the map!"); + assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP; } ComplexType *New = new ComplexType(T, Canonical); Types.push_back(New); @@ -615,7 +615,7 @@ QualType ASTContext::getPointerType(QualType T) { // Get the new insert position for the node we care about. PointerType *NewIP = PointerTypes.FindNodeOrInsertPos(ID, InsertPos); - assert(NewIP == 0 && "Shouldn't be in the map!"); + assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP; } PointerType *New = new PointerType(T, Canonical); Types.push_back(New); @@ -646,7 +646,7 @@ QualType ASTContext::getBlockPointerType(QualType T) { // Get the new insert position for the node we care about. BlockPointerType *NewIP = BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos); - assert(NewIP == 0 && "Shouldn't be in the map!"); + assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP; } BlockPointerType *New = new BlockPointerType(T, Canonical); Types.push_back(New); @@ -674,7 +674,7 @@ QualType ASTContext::getReferenceType(QualType T) { // Get the new insert position for the node we care about. ReferenceType *NewIP = ReferenceTypes.FindNodeOrInsertPos(ID, InsertPos); - assert(NewIP == 0 && "Shouldn't be in the map!"); + assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP; } ReferenceType *New = new ReferenceType(T, Canonical); @@ -706,8 +706,7 @@ QualType ASTContext::getConstantArrayType(QualType EltTy, // Get the new insert position for the node we care about. ConstantArrayType *NewIP = ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos); - - assert(NewIP == 0 && "Shouldn't be in the map!"); + assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP; } ConstantArrayType *New = new ConstantArrayType(EltTy, Canonical, ArySize, @@ -755,8 +754,7 @@ QualType ASTContext::getIncompleteArrayType(QualType EltTy, // Get the new insert position for the node we care about. IncompleteArrayType *NewIP = IncompleteArrayTypes.FindNodeOrInsertPos(ID, InsertPos); - - assert(NewIP == 0 && "Shouldn't be in the map!"); + assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP; } IncompleteArrayType *New = new IncompleteArrayType(EltTy, Canonical, @@ -790,7 +788,7 @@ QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts) { // Get the new insert position for the node we care about. VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos); - assert(NewIP == 0 && "Shouldn't be in the map!"); + assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP; } VectorType *New = new VectorType(vecType, NumElts, Canonical); VectorTypes.InsertNode(New, InsertPos); @@ -821,7 +819,7 @@ QualType ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) { // Get the new insert position for the node we care about. VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos); - assert(NewIP == 0 && "Shouldn't be in the map!"); + assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP; } ExtVectorType *New = new ExtVectorType(vecType, NumElts, Canonical); VectorTypes.InsertNode(New, InsertPos); @@ -849,7 +847,7 @@ QualType ASTContext::getFunctionTypeNoProto(QualType ResultTy) { // Get the new insert position for the node we care about. FunctionTypeNoProto *NewIP = FunctionTypeNoProtos.FindNodeOrInsertPos(ID, InsertPos); - assert(NewIP == 0 && "Shouldn't be in the map!"); + assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP; } FunctionTypeNoProto *New = new FunctionTypeNoProto(ResultTy, Canonical); @@ -893,7 +891,7 @@ QualType ASTContext::getFunctionType(QualType ResultTy,const QualType *ArgArray, // Get the new insert position for the node we care about. FunctionTypeProto *NewIP = FunctionTypeProtos.FindNodeOrInsertPos(ID, InsertPos); - assert(NewIP == 0 && "Shouldn't be in the map!"); + assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP; } // FunctionTypeProto objects are not allocated with new because they have a |