update comment.

llvm-svn: 68060
This commit is contained in:
Chris Lattner 2009-03-30 20:44:04 +00:00
parent 2f52e6488f
commit 32f4959ee4
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ namespace llvm {
/// printf("%d %d", P.is<int*>(), P.is<float*>()); // prints "1 0"
/// X = P.get<int*>(); // ok.
/// Y = P.get<float*>(); // runtime assertion failure.
/// Z = P.get<double*>(); // does not compile.
/// Z = P.get<double*>(); // runtime assertion failure (regardless of tag)
/// P = (float*)0;
/// Y = P.get<float*>(); // ok.
/// X = P.get<int*>(); // runtime assertion failure.