aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2009-02-27 04:53:40 +0000
committerEli Friedman <eli.friedman@gmail.com>2009-02-27 04:53:40 +0000
commitfd6f08525f9292255249b2434af4c6b2bc02ee93 (patch)
treed8f61d32452e279f057934c2d29fa9b4f898da0f /lib
parentf04ec6774f88d3c0d486eba04803e34a9513037f (diff)
Change the way clang generates union types a bit so it plays well
with the LLVM C backend. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65615 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/CodeGenTypes.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenTypes.cpp b/lib/CodeGen/CodeGenTypes.cpp
index 0912183053..77131332e6 100644
--- a/lib/CodeGen/CodeGenTypes.cpp
+++ b/lib/CodeGen/CodeGenTypes.cpp
@@ -555,6 +555,11 @@ void RecordOrganizer::layoutUnionFields(const ASTRecordLayout &RL) {
// of the result doesn't matter because anyone allocating
// structures should be aligning them appropriately anyway.
// FIXME: We can be a bit more intuitive in a lot of cases.
- STy = llvm::ArrayType::get(llvm::Type::Int8Ty, RL.getSize() / 8);
+ // FIXME: Make this a struct type to work around PR2399; the
+ // C backend doesn't like structs using array types.
+ std::vector<const llvm::Type*> LLVMFields;
+ LLVMFields.push_back(llvm::ArrayType::get(llvm::Type::Int8Ty,
+ RL.getSize() / 8));
+ STy = llvm::StructType::get(LLVMFields, true);
assert(CGT.getTargetData().getTypePaddedSizeInBits(STy) == RL.getSize());
}