From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.182.153.35 with SMTP id vd3mr1947380obb.37.1382725994969; Fri, 25 Oct 2013 11:33:14 -0700 (PDT) X-Received: by 10.182.80.135 with SMTP id r7mr50797obx.12.1382725994614; Fri, 25 Oct 2013 11:33:14 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!news.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!news.glorb.com!i2no34055090qav.0!news-out.google.com!z6ni91529pbu.0!nntp.google.com!o2no26496421qas.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Fri, 25 Oct 2013 11:33:14 -0700 (PDT) In-Reply-To: <5bae226f-91a2-4da0-a802-185a0de514f3@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=205.175.225.12; posting-account=RvtWtgoAAABzBfR8mKSwtVLFc0JAJ5FD NNTP-Posting-Host: 205.175.225.12 References: <5bae226f-91a2-4da0-a802-185a0de514f3@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <0d509f96-1f16-4553-8e31-245ab7298322@googlegroups.com> Subject: Re: How to do null comparision with pointers in ADA83? From: seshucherukuri@gmail.com Injection-Date: Fri, 25 Oct 2013 18:33:14 +0000 Content-Type: text/plain; charset=ISO-8859-1 Xref: news.eternal-september.org comp.lang.ada:17536 Date: 2013-10-25T11:33:14-07:00 List-Id: On Friday, October 25, 2013 1:12:00 PM UTC-5, seshuch...@gmail.com wrote: > Hello, In ADA83, i could not able to do null comparision of my pointer value. here, my pointer is of array type. Is there any solution for this. Thanking you in advance. Regards, Seshukumar. Hello, Here my code is type AVL_Node_Ref is access AVL_Node; procedure Search_Insert (T : in out AVL_Tree; Element : VCAST_MCDC_Statement_Ptr; Node : in out AVL_Node_Ref; Increased : in out Boolean; Inserted : out Boolean) begin if Node = null then .... Here, in the above code Node = null is not taking.... any quick inputs... I want to compile for ADA83. Thanks, Seshu.