diff options
author | Roland McGrath <mcgrathr@google.com> | 2018-03-27 16:27:03 -0700 |
---|---|---|
committer | Roland McGrath <mcgrathr@google.com> | 2018-03-27 18:51:22 -0700 |
commit | 9c75b45645acb30c42f09b80cbaadbde391aa7b2 (patch) | |
tree | a930f8c61b4bd393561588f5f05ca79e5526b350 /gold/testsuite | |
parent | bbcd71b48044bdcee3641b93272c7bc968093907 (diff) | |
download | binutils-9c75b45645acb30c42f09b80cbaadbde391aa7b2.zip binutils-9c75b45645acb30c42f09b80cbaadbde391aa7b2.tar.gz binutils-9c75b45645acb30c42f09b80cbaadbde391aa7b2.tar.bz2 |
gold/testsuite: Fix bad regexp in split_x86_64.sh
gold/
* testsuite/split_x86_64.sh: Fix bad regexp.
Diffstat (limited to 'gold/testsuite')
-rwxr-xr-x | gold/testsuite/split_x86_64.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gold/testsuite/split_x86_64.sh b/gold/testsuite/split_x86_64.sh index e436b51..98dc5c5 100755 --- a/gold/testsuite/split_x86_64.sh +++ b/gold/testsuite/split_x86_64.sh @@ -2,7 +2,7 @@ # split_x86_64.sh -- test -fstack-split for x86_64 -# Copyright (C) 2009-2017 Free Software Foundation, Inc. +# Copyright (C) 2009-2018 Free Software Foundation, Inc. # Written by Ian Lance Taylor <iant@google.com>. # This file is part of gold. @@ -38,7 +38,7 @@ nomatch() fi } -match 'cmp.*+%fs:[^,]*,%rsp' split_x86_64_1.stdout +match 'cmp.*%fs:[^,]*,%rsp' split_x86_64_1.stdout match 'callq.*__morestack>?$' split_x86_64_1.stdout match 'lea.*-0x200\(%rsp\),' split_x86_64_1.stdout |