From: Fariborz Jahanian Date: Wed, 2 Sep 2009 21:24:14 +0000 (+0000) Subject: Added a FIXME to the test case. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6c35415912d1e43c21fcaa2823934ae993f2718b;p=clang Added a FIXME to the test case. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80840 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaObjC/static-ivar-ref-1.m b/test/SemaObjC/static-ivar-ref-1.m index 89526b0c10..4d0e7ba899 100644 --- a/test/SemaObjC/static-ivar-ref-1.m +++ b/test/SemaObjC/static-ivar-ref-1.m @@ -13,5 +13,6 @@ current *pc; int foo() { + // FIXME. This should be OK in nonfragile-abi as well. return pc->ivar2 + (*pc).ivar + pc->ivar1; }