From ccc73c93278ccbc8426b3c79ee29ccdd60f029ea Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 30 Mar 2009 20:44:04 +0000 Subject: [PATCH] update comment. llvm-svn: 68060 --- include/llvm/ADT/PointerUnion.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/ADT/PointerUnion.h b/include/llvm/ADT/PointerUnion.h index da67c8e8c27..6f5d01af86a 100644 --- a/include/llvm/ADT/PointerUnion.h +++ b/include/llvm/ADT/PointerUnion.h @@ -54,7 +54,7 @@ namespace llvm { /// printf("%d %d", P.is(), P.is()); // prints "1 0" /// X = P.get(); // ok. /// Y = P.get(); // runtime assertion failure. - /// Z = P.get(); // does not compile. + /// Z = P.get(); // runtime assertion failure (regardless of tag) /// P = (float*)0; /// Y = P.get(); // ok. /// X = P.get(); // runtime assertion failure.