1--  GCC back-end for ortho.
2--  Copyright (C) 2002-1014 Tristan Gingold
3--
4--  This program is free software: you can redistribute it and/or modify
5--  it under the terms of the GNU General Public License as published by
6--  the Free Software Foundation, either version 2 of the License, or
7--  (at your option) any later version.
8--
9--  This program is distributed in the hope that it will be useful,
10--  but WITHOUT ANY WARRANTY; without even the implied warranty of
11--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12--  GNU General Public License for more details.
13--
14--  You should have received a copy of the GNU General Public License
15--  along with this program.  If not, see <gnu.org/licenses>.
16
17package body Ortho_LLVM is
18   procedure New_Debug_Filename_Decl (Filename : String) is
19   begin
20      null;
21   end New_Debug_Filename_Decl;
22
23   procedure New_Debug_Comment_Decl (Comment : String)
24   is
25      pragma Unreferenced (Comment);
26   begin
27      null;
28   end New_Debug_Comment_Decl;
29
30   procedure New_Debug_Comment_Stmt (Comment : String)
31   is
32      pragma Unreferenced (Comment);
33   begin
34      null;
35   end New_Debug_Comment_Stmt;
36
37end Ortho_LLVM;
38