diff options
author | Rob Savoye <rob@cygnus> | 1994-01-05 05:21:34 +0000 |
---|---|---|
committer | Rob Savoye <rob@cygnus> | 1994-01-05 05:21:34 +0000 |
commit | 5fdb3602a66737e69ca996f31e646e36c1fa842b (patch) | |
tree | a9c00568a44e604db14eb692a5ec40b6dd567247 /gas/testsuite | |
parent | 1c5d19ee56cbfe78f3f823646b6624b25ed289fa (diff) | |
download | gdb-5fdb3602a66737e69ca996f31e646e36c1fa842b.zip gdb-5fdb3602a66737e69ca996f31e646e36c1fa842b.tar.gz gdb-5fdb3602a66737e69ca996f31e646e36c1fa842b.tar.bz2 |
Add default values for AS and ASFLAGS.
Diffstat (limited to 'gas/testsuite')
-rw-r--r-- | gas/testsuite/config/unix-gas.exp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gas/testsuite/config/unix-gas.exp b/gas/testsuite/config/unix-gas.exp index 050c56b..cf28769 100644 --- a/gas/testsuite/config/unix-gas.exp +++ b/gas/testsuite/config/unix-gas.exp @@ -1,3 +1,13 @@ load_lib gas-defs.exp +global AS +if ![info exists AS] then { + set AS [transform as] +} + +global ASFLAGS +if ![info exists ASFLAGS] then { + set ASFLAGS "" +} + gas_init |