aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Design-rationale.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-09-14 18:30:18 +0300
committerGitHub <noreply@github.com>2017-09-14 18:30:18 +0300
commit6fd2fab02cf0e282483993b3df0e4388a5d23a02 (patch)
treec940f1be28f0368d49535aa1bd86a111afc42401 /docs/markdown/Design-rationale.md
parentf04d1410880d96fecc362db8bd183a7e1ed7c41f (diff)
parent4cbca499760269b02d4f306b0558afec031592d0 (diff)
downloadmeson-6fd2fab02cf0e282483993b3df0e4388a5d23a02.zip
meson-6fd2fab02cf0e282483993b3df0e4388a5d23a02.tar.gz
meson-6fd2fab02cf0e282483993b3df0e4388a5d23a02.tar.bz2
Merge pull request #2319 from georgmu/cmake2meson-improvements
cmake2meson improvements
Diffstat (limited to 'docs/markdown/Design-rationale.md')
0 files changed, 0 insertions, 0 deletions
ion> Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.mi/dw2-ref-missing-frame-main.c
blob: c9d42b312052c99cf17201eb4e58450650a083c1 (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
/* This testcase is part of GDB, the GNU debugger.

   Copyright 2009-2019 Free Software Foundation, Inc.

   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/>.  */

extern void func_nofb (void);
extern void func_loopfb (void);

void
func_nofb_marker (void)
{
}

void
func_loopfb_marker (void)
{
}

int
main (void)
{
  int main_var = 1;

  func_nofb ();
  func_loopfb ();

  return 0;
}