[llvm-commits] CVS: llvm/include/llvm/Type.h User.h
Chris Lattner
lattner at cs.uiuc.edu
Sat Feb 26 22:15:21 PST 2005
Changes in directory llvm/include/llvm:
Type.h updated: 1.71 -> 1.72
User.h updated: 1.33 -> 1.34
---
Log message:
Fix spelling, patch contributed by Gabor Greif
---
Diffs of the changes: (+3 -1)
Type.h | 2 +-
User.h | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
Index: llvm/include/llvm/Type.h
diff -u llvm/include/llvm/Type.h:1.71 llvm/include/llvm/Type.h:1.72
--- llvm/include/llvm/Type.h:1.71 Mon Jan 24 10:28:03 2005
+++ llvm/include/llvm/Type.h Sun Feb 27 00:15:09 2005
@@ -23,7 +23,7 @@
// identical if they are pointer equals of each other. This allows us to have
// two opaque types that end up resolving to different concrete types later.
//
-// Opaque types are also kinda wierd and scary and different because they have
+// Opaque types are also kinda weird and scary and different because they have
// to keep a list of uses of the type. When, through linking, parsing, or
// bytecode reading, they become resolved, they need to find and update all
// users of the unknown type, causing them to reference a new, more concrete
Index: llvm/include/llvm/User.h
diff -u llvm/include/llvm/User.h:1.33 llvm/include/llvm/User.h:1.34
--- llvm/include/llvm/User.h:1.33 Fri Jan 28 18:29:39 2005
+++ llvm/include/llvm/User.h Sun Feb 27 00:15:09 2005
@@ -97,6 +97,7 @@
return static_cast<SimpleType>(Val->get());
}
};
+
template<> struct simplify_type<const User::op_iterator>
: public simplify_type<User::op_iterator> {};
@@ -107,6 +108,7 @@
return static_cast<SimpleType>(Val->get());
}
};
+
template<> struct simplify_type<const User::const_op_iterator>
: public simplify_type<User::const_op_iterator> {};
More information about the llvm-commits
mailing list