diff options
author | Mike Stump <mrs@apple.com> | 2009-11-17 00:30:31 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-11-17 00:30:31 +0000 |
commit | c888f485caaedfcdf62a728d542419232ee89ca0 (patch) | |
tree | f0911f08e00e6a4f43664252ac666565e88739aa | |
parent | f4a08d0d8b496a7f52702e05b8d7622e030dd9d8 (diff) |
Note why this doesn't yet work.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89012 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenCXX/dyncast.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/CodeGenCXX/dyncast.cpp b/test/CodeGenCXX/dyncast.cpp index ffde137523..4719f80a5b 100644 --- a/test/CodeGenCXX/dyncast.cpp +++ b/test/CodeGenCXX/dyncast.cpp @@ -29,7 +29,8 @@ void test1() { S(bp == 0, 3); ap = dynamic_cast<test1_A*>(&test1_d); S(ap != 0, 4); - // FIXME: Doesn't work yet, gcc fails this at comepile time + // FIXME: Doesn't work yet, gcc fails this at compile time. We'd need access + // control for this to work. // bp = dynamic_cast<test1_B*>(&test1_d); // S(bp == 0, 5); { |