~ubuntu-branches/ubuntu/jaunty/adacontrol/jaunty

« back to all changes in this revision

Viewing changes to src/rules-not_elaboration_calls.ads

  • Committer: Bazaar Package Importer
  • Author(s): Ludovic Brenta
  • Date: 2008-04-27 15:25:59 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080427152559-qrlic533a1x02flu
Tags: 1.8r8-1

* New upstream version.
* debian/adacontrol.gpr: delete; use upstream's project file instead.
* patches/build.patch: patch upstream's project file to change Object_Dir
  and Exec_Dir.
* Build-depend on asis 2007 and gnat-4.3.
* Add support for mips, mipsel and ppc64.
* Build and provide ptree.
* ptree.1: new.
* adactl.1: update; new options and rules are available.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
package Rules.Not_Elaboration_Calls  is
36
36
 
37
 
   -- This rule can be used to check/search for subprogram calls that happen
38
 
   -- elsewhere than as part of the elaboration of a library package.
39
 
   -- Parameters (1) => subprogram name
40
 
   -- Parameters (2) => subprogram name
41
 
   -- ...
42
 
   -- Parameters (N) => subprogram name
43
 
 
44
37
   Rule_Id : constant Wide_String := "NOT_ELABORATION_CALLS";
45
38
 
46
39
   procedure Process_Call (Call : in Asis.Element);
47
 
   -- Called whenever a subprogram or entry is called
48
40
 
49
41
end Rules.Not_Elaboration_Calls;