diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 17:55:52 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 17:55:52 +0000 |
commit | f7a951d79bc895eb2171c2570add9f4899794a10 (patch) | |
tree | cc0c7147f472fecbc93add134f5c0e5c1bb72529 /testsuite/lib/dwarf-lib.exp | |
parent | Initial commit. (diff) | |
download | dwz-f7a951d79bc895eb2171c2570add9f4899794a10.tar.xz dwz-f7a951d79bc895eb2171c2570add9f4899794a10.zip |
Adding upstream version 0.15.upstream/0.15upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testsuite/lib/dwarf-lib.exp')
-rw-r--r-- | testsuite/lib/dwarf-lib.exp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/testsuite/lib/dwarf-lib.exp b/testsuite/lib/dwarf-lib.exp new file mode 100644 index 0000000..aca710e --- /dev/null +++ b/testsuite/lib/dwarf-lib.exp @@ -0,0 +1,28 @@ +# Copyright 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/>. + +# Auxiliary stuff to make the dwarf assembler in dwarf.exp work outside of the +# gdb testsuite context. We don't add this to dwarf.exp to keep differences +# between dwz's dwarf.exp and gdb's dwarf.exp minimal. + +proc is_64_target {} { + if { $::env(POINTER_SIZE) == 8 } { + return 1 + } elseif { $::env(POINTER_SIZE) == 4 } { + return 0 + } else { + error "POINTER_SIZE not defined in env" + } +} |