aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-04-23 22:50:03 +0000
committerDan Gohman <gohman@apple.com>2009-04-23 22:50:03 +0000
commit5e5558bc66d593605ece81502bc310b7cf9e87f0 (patch)
treef3573f0549fdab18a4a653443da8dbb2828ed769 /lib/CodeGen/SelectionDAG
parentf1d012c5956fc94ef9570855f4d276598c297eda (diff)
downloadexternal_llvm-5e5558bc66d593605ece81502bc310b7cf9e87f0.zip
external_llvm-5e5558bc66d593605ece81502bc310b7cf9e87f0.tar.gz
external_llvm-5e5558bc66d593605ece81502bc310b7cf9e87f0.tar.bz2
Handle Void types in ComputeValueVTs. This doesn't currently occur,
but this change makes the code more general and easier to adapt for new purposes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69935 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp
index b20f061..fd5fcbb 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp
@@ -135,6 +135,9 @@ static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
StartingOffset + i * EltSize);
return;
}
+ // Interpret void as zero return values.
+ if (Ty == Type::VoidTy)
+ return;
// Base case: we can get an MVT for this LLVM IR type.
ValueVTs.push_back(TLI.getValueType(Ty));
if (Offsets)