aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/sql/SQLData.java
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2002-05-13 22:15:57 -0600
committerJeff Law <law@gcc.gnu.org>2002-05-13 22:15:57 -0600
commitfe4b3c7996410a60bd1b9164eae31bc3946deded (patch)
treeae31909c2478ff0944567441bd154b38631a8b6f /libjava/java/sql/SQLData.java
parentc297b7649ce38bda7fd136bcda476009313e4610 (diff)
downloadgcc-fe4b3c7996410a60bd1b9164eae31bc3946deded.zip
gcc-fe4b3c7996410a60bd1b9164eae31bc3946deded.tar.gz
gcc-fe4b3c7996410a60bd1b9164eae31bc3946deded.tar.bz2
flow.c (invalidate_mems_from_autoinc): Rewrite to use for_each_rtx.
* flow.c (invalidate_mems_from_autoinc): Rewrite to use for_each_rtx. Update prototype and callers. (propagate_one_insn): Stack pointer adjustments kill MEMs on the mem_set_list which reference the stack pointer, as do calls to constant functions as they may clobber outgoing argument space. From-SVN: r53442
Diffstat (limited to 'libjava/java/sql/SQLData.java')
0 files changed, 0 insertions, 0 deletions
value='users/ahajkova/try-frob'>users/ahajkova/try-frob Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/gdb/main.h
blob: fbbc473a45729671409a73ffb423c4a1aca4bf0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* Main interface for GDB, the GNU debugger.

   Copyright (C) 2002, 2007, 2008, 2009, 2010, 2011
   Free Software Foundation, Inc.

   This file is part of GDB.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

#ifndef MAIN_H
#define MAIN_H

struct captured_main_args
{
  int argc;
  char **argv;
  int use_windows;
  const char *interpreter_p;
};

extern int gdb_main (struct captured_main_args *);

/* From main.c.  */
extern int return_child_result;
extern int return_child_result_value;
extern int batch_silent;
extern int batch_flag;

#endif