summaryrefslogtreecommitdiffstats
path: root/lib/Bitcode
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-07-05 17:18:32 +0000
committerChris Lattner <sabre@nondot.org>2007-07-05 17:18:32 +0000
commit3a08abfd3492b86b7305992a5e38b969aea5e9b8 (patch)
treecf6783886d0c2ff94fdf7351b7a1017cdf395411 /lib/Bitcode
parent1f6d77b54a0f9be69b786e5c56853f1015cb44cd (diff)
downloadexternal_llvm-3a08abfd3492b86b7305992a5e38b969aea5e9b8.zip
external_llvm-3a08abfd3492b86b7305992a5e38b969aea5e9b8.tar.gz
external_llvm-3a08abfd3492b86b7305992a5e38b969aea5e9b8.tar.bz2
remove a dead case
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37916 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode')
-rw-r--r--lib/Bitcode/Writer/BitcodeWriter.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Bitcode/Writer/BitcodeWriter.cpp b/lib/Bitcode/Writer/BitcodeWriter.cpp
index eddae26..086dca8 100644
--- a/lib/Bitcode/Writer/BitcodeWriter.cpp
+++ b/lib/Bitcode/Writer/BitcodeWriter.cpp
@@ -183,7 +183,6 @@ static void WriteTypeTable(const ValueEnumerator &VE, BitstreamWriter &Stream) {
unsigned Code = 0;
switch (T->getTypeID()) {
- case Type::PackedStructTyID: // FIXME: Delete Type::PackedStructTyID.
default: assert(0 && "Unknown type!");
case Type::VoidTyID: Code = bitc::TYPE_CODE_VOID; break;
case Type::FloatTyID: Code = bitc::TYPE_CODE_FLOAT; break;