* gimplify.c (find_single_pointer_decl_1): New static function.
[official-gcc.git] / gcc / ada / s-stausa.adb
blob3823ebe9aaa24fcc328e2e71f0370d27165267e6
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS --
4 -- --
5 -- S Y S T E M - S T A C K _ U S A G E --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 2004-2005, Free Software Foundation, Inc. --
10 -- --
11 -- GNARL is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 2, or (at your option) any later ver- --
14 -- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNARL; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
21 -- --
22 -- As a special exception, if other files instantiate generics from this --
23 -- unit, or you link this unit with other files to produce an executable, --
24 -- this unit does not by itself cause the resulting executable to be --
25 -- covered by the GNU General Public License. This exception does not --
26 -- however invalidate any other reasons why the executable file might be --
27 -- covered by the GNU Public License. --
28 -- --
29 -- GNARL was developed by the GNARL team at Florida State University. --
30 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
31 -- --
32 ------------------------------------------------------------------------------
33 -- Dummy implementation.
35 package body System.Stack_Usage is
37 --------------------
38 -- Compute_Result --
39 --------------------
41 procedure Compute_Result (Analyzer : in out Stack_Analyzer) is
42 pragma Unreferenced (Analyzer);
43 begin
44 null;
45 end Compute_Result;
47 ----------------
48 -- Fill_Stack --
49 ----------------
51 procedure Fill_Stack (Analyzer : in out Stack_Analyzer) is
52 pragma Unreferenced (Analyzer);
53 begin
54 null;
55 end Fill_Stack;
57 -------------------------
58 -- Initialize_Analyzer --
59 -------------------------
61 procedure Initialize_Analyzer
62 (Analyzer : in out Stack_Analyzer;
63 Task_Name : String;
64 Size : Natural;
65 Bottom : Stack_Address;
66 Pattern : Word_32 := 16#DEAD_BEEF#)
68 pragma Unreferenced (Analyzer);
69 pragma Unreferenced (Task_Name);
70 pragma Unreferenced (Size);
71 pragma Unreferenced (Pattern);
72 pragma Unreferenced (Bottom);
73 begin
74 null;
75 end Initialize_Analyzer;
77 ---------------------
78 -- Output_Results --
79 ---------------------
81 procedure Output_Results is
82 begin
83 null;
84 end Output_Results;
86 -------------------
87 -- Report_Result --
88 -------------------
90 procedure Report_Result (Analyzer : Stack_Analyzer) is
91 pragma Unreferenced (Analyzer);
92 begin
93 null;
94 end Report_Result;
96 end System.Stack_Usage;