[llvm-commits] CVS: llvm/include/llvm/Type.h

Misha Brukman brukman at cs.uiuc.edu
Mon Jan 24 08:28:14 PST 2005



Changes in directory llvm/include/llvm:

Type.h updated: 1.70 -> 1.71
---
Log message:

`primitive' has no `a'


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

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


Index: llvm/include/llvm/Type.h
diff -u llvm/include/llvm/Type.h:1.70 llvm/include/llvm/Type.h:1.71
--- llvm/include/llvm/Type.h:1.70	Mon Jan 24 10:00:52 2005
+++ llvm/include/llvm/Type.h	Mon Jan 24 10:28:03 2005
@@ -201,7 +201,7 @@
   /// TargetData subsystem to do this.
   ///
   bool isSized() const {
-    // If it's a primative, it is always sized.
+    // If it's a primitive, it is always sized.
     if (ID >= BoolTyID && ID <= DoubleTyID || ID == PointerTyID)
       return true;
     // If it is not something that can have a size (e.g. a function or label),






More information about the llvm-commits mailing list