Changes in directory llvm/include/llvm:

Type.h updated: 1.106 -> 1.107
---
Log message:

Fix a problem where primitive types lose their name after llvm_shutdown is 
called.
This also reduces the amount of work done at static construction time.


---
Diffs of the changes:  (+0 -1)

 Type.h |    1 -
 1 files changed, 1 deletion(-)


Index: llvm/include/llvm/Type.h
diff -u llvm/include/llvm/Type.h:1.106 llvm/include/llvm/Type.h:1.107
--- llvm/include/llvm/Type.h:1.106      Thu Apr  5 21:02:19 2007
+++ llvm/include/llvm/Type.h    Fri Apr 20 17:33:47 2007
@@ -107,7 +107,6 @@
   void destroy() const; // const is a lie, this does "delete this"!
 
 protected:
-  Type(const char *Name, TypeID id);
   explicit Type(TypeID id) : ID(id), Abstract(false), SubclassData(0),
                              RefCount(0), ForwardType(0), NumContainedTys(0),
                              ContainedTys(0) {}



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to