aboutsummaryrefslogtreecommitdiff
path: root/gcc/lambda-trans.c
diff options
context:
space:
mode:
authorThomas Koenig <Thomas.Koenig@online.de>2005-08-10 20:16:29 +0000
committerThomas Koenig <tkoenig@gcc.gnu.org>2005-08-10 20:16:29 +0000
commitbf30222095f87487f17327279fe563dff47479df (patch)
tree192d52eb31c60fbe56e1909dc928b0c43d08c0ca /gcc/lambda-trans.c
parentbb8df8a62d346532834194e96b8d3970eb8cd6e0 (diff)
downloadgcc-bf30222095f87487f17327279fe563dff47479df.zip
gcc-bf30222095f87487f17327279fe563dff47479df.tar.gz
gcc-bf30222095f87487f17327279fe563dff47479df.tar.bz2
re PR libfortran/22143 (missing kinds 1 and 2 for eoshift and cshift)
2005-08-10 Thomas Koenig <Thomas.Koenig@online.de> PR libfortran/22143 gfortran.h: Declare new function gfc_resolve_dim_arg. resolve.c: New function gfc_resolve_dim_arg. iresolve.c (gfc_resolve_all): Use gfc_resolve_dim_arg. (gfc_resolve_any): Likewise. (gfc_resolve_count): Likewise. (gfc_resolve_cshift): Likewise. If the kind of shift is less gfc_default_integer_kind, convert it to default integer type. (gfc_resolve_eoshift): Likewise. (gfc_resolve_maxloc): Use gfc_resolve_dim_arg. (gfc_resolve_maxval): Likewise. (gfc_resolve_minloc): Likewise. (gfc_resolve_minval): Likewise. (gfc_resolve_product): Likewise. (gfc_resolve_spread): Likewise. (gfc_resolve_sum): Likewise. 2005-08-10 Thomas Koenig <Thomas.Koenig@online.de> PR libfortran/22143 gfortran.dg/shift-kind.f90: New testcase. From-SVN: r102957
Diffstat (limited to 'gcc/lambda-trans.c')
0 files changed, 0 insertions, 0 deletions
/2.12/master Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/elf/tst-filterobj-filtee.c
blob: f90cc80a1394e3cbdd0bb44171e3ce9a96ce7738 (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
/* Filtee for BZ#16272 test.
   Contains desired symbol implementations.

   Copyright (C) 2020-2025 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

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

   The GNU C Library 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
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   <https://www.gnu.org/licenses/>.  */

#include "tst-filterobj-filtee.h"

/* This is the real implementation that wants to be called */
const char *get_text (void)
{
  return "Hello from filtee (PASS)";
}