summaryrefslogtreecommitdiffstats
path: root/testsuite/lib/dwarf-lib.exp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testsuite/lib/dwarf-lib.exp28
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"
+ }
+}