Remove this file as there are no LLVM users of it any more.
[oota-llvm.git] / include / llvm / Type.def
index c56da22b763ebda7e851259d31becd4f6eb54a38..25ad5cd3bd52341b51e50eab764a6d4f6670ed54 100644 (file)
@@ -1,4 +1,11 @@
-//===-- llvm/Type.def - File that describes various LLVM types ---*- C++ -*--=//
+//===-- llvm/Type.def - File that describes various LLVM types --*- C++ -*-===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This file contains descriptions of the various LLVM types and derived types.
 // This file serves as a source of in source documentation and a can be
@@ -9,7 +16,7 @@
 // NOTE: NO INCLUDE GUARD DESIRED!
 
 
-// If the user didn't specify one of the macros, give a default noop defn.
+// If the user did not specify one of the macros, give a default noop defn.
 //
 #ifndef HANDLE_PRIM_TYPE
 #define HANDLE_PRIM_TYPE(x,y)
@@ -37,7 +44,6 @@ HANDLE_PRIM_TYPE(Long  , 8)
 HANDLE_PRIM_TYPE(ULong , 8)
 HANDLE_PRIM_TYPE(Float , 4)
 HANDLE_PRIM_TYPE(Double, 8)
-HANDLE_PRIM_TYPE(Type  , 0)
 HANDLE_PRIM_TYPE(Label , 0)
 
 
@@ -52,6 +58,7 @@ HANDLE_DERV_TYPE(Array   , ArrayType)
 HANDLE_DERV_TYPE(Pointer , PointerType)
 HANDLE_DERV_TYPE(Struct  , StructType)
 HANDLE_DERV_TYPE(Opaque  , OpaqueType)
+HANDLE_DERV_TYPE(Packed  , PackedType)
 
 // Kill the macros on exit...
 #undef HANDLE_PRIM_TYPE