mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 02:50:08 +08:00
gdb/testsuite: escape '*' character in pattern used by flang
One of the integer type patterns used by flang included a '*' character which was not escaped. gdb/testsuite/ChangeLog: * lib/fortran.exp (fortran_int8): Escape '*' in pattern.
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
2021-06-02 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||
|
||||
* lib/fortran.exp (fortran_int8): Escape '*' in pattern.
|
||||
|
||||
2021-06-01 Tom Tromey <tromey@adacore.com>
|
||||
|
||||
* Makefile.in (all): Don't print anything.
|
||||
|
@ -49,7 +49,7 @@ proc fortran_int8 {} {
|
||||
} elseif {[test_compiler_info {gcc-*}]} {
|
||||
return "integer\\(kind=8\\)"
|
||||
} elseif {[test_compiler_info {clang-*}]} {
|
||||
return "integer*8"
|
||||
return "integer\\*8"
|
||||
} elseif {[test_compiler_info {icc-*}]} {
|
||||
return "INTEGER\\(8\\)"
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user