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.
+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.
} 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 {