blob: 04899a8177c535e0e5cca204ee57e8bc7b767df5 [file] [log] [blame]
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00001/* Out of line functions for memory-access.h macros.
2 Copyright (C) 2005 Red Hat, Inc.
3
4 This program is Open Source software; you can redistribute it and/or
5 modify it under the terms of the Open Software License version 1.0 as
6 published by the Open Source Initiative.
7
8 You should have received a copy of the Open Software License along
9 with this program; if not, you may obtain a copy of the Open Software
10 License version 1.0 from http://www.opensource.org/licenses/osl.php or
11 by writing the Open Source Initiative c/o Lawrence Rosen, Esq.,
12 3001 King Ranch Road, Ukiah, CA 95482. */
13
14#ifdef HAVE_CONFIG_H
15# include <config.h>
16#endif
17#include "libdwP.h"
18#include "memory-access.h"
19
20uint64_t
21internal_function_def
22__libdw_get_uleb128 (uint64_t acc, unsigned int i, const unsigned char **addrp)
23{
24 unsigned char __b;
25 get_uleb128_rest_return (acc, i, addrp);
26}
27
28int64_t
29internal_function_def
30__libdw_get_sleb128 (int64_t acc, unsigned int i, const unsigned char **addrp)
31{
32 unsigned char __b;
33 int64_t _v = acc;
34 get_sleb128_rest_return (acc, i, addrp);
35}