From: Dan Gohman Date: Wed, 23 Jul 2008 18:41:03 +0000 (+0000) Subject: Use C99 aggregate literal syntax for first-class struct and array values. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=1a24539405bb1adb7198c8ebafc6cd82218c604b;p=oota-llvm.git Use C99 aggregate literal syntax for first-class struct and array values. This fixes several recent CBE regressions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53958 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp index cda81e428d7..83403747501 100644 --- a/lib/Target/CBackend/CBackend.cpp +++ b/lib/Target/CBackend/CBackend.cpp @@ -1021,6 +1021,10 @@ void CWriter::printConstant(Constant *CPV) { } case Type::ArrayTyID: + // Use C99 compound expression literal initializer syntax. + Out << "("; + printType(Out, CPV->getType()); + Out << ")"; Out << "{ "; // Arrays are wrapped in struct types. if (ConstantArray *CA = dyn_cast(CPV)) { printConstantArray(CA); @@ -1064,6 +1068,10 @@ void CWriter::printConstant(Constant *CPV) { break; case Type::StructTyID: + // Use C99 compound expression literal initializer syntax. + Out << "("; + printType(Out, CPV->getType()); + Out << ")"; if (isa(CPV) || isa(CPV)) { const StructType *ST = cast(CPV->getType()); Out << '{';