| Index: gdb/testsuite/gdb.dwarf2/dw2-case-insensitive.c
|
| diff --git a/gdb/testsuite/gdb.dwarf2/dw2-case-insensitive.c b/gdb/testsuite/gdb.dwarf2/dw2-case-insensitive.c
|
| index f8ce4b6ac486679e2b60c1fe798d64c33b26218c..4b3ea07e1e9f68a6faa89a84e2d11a5e91f69a47 100644
|
| --- a/gdb/testsuite/gdb.dwarf2/dw2-case-insensitive.c
|
| +++ b/gdb/testsuite/gdb.dwarf2/dw2-case-insensitive.c
|
| @@ -1,6 +1,6 @@
|
| /* This testcase is part of GDB, the GNU debugger.
|
|
|
| - Copyright 2011-2012 Free Software Foundation, Inc.
|
| + Copyright 2011-2013 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
|
| @@ -16,12 +16,21 @@
|
| along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
| /* Use DW_LANG_Fortran90 for case insensitive DWARF. */
|
| +asm (".globl cu_text_start");
|
| +asm ("cu_text_start:");
|
| +
|
| +asm (".globl FUNC_lang_start");
|
| +asm (".p2align 4");
|
| +asm ("FUNC_lang_start:");
|
|
|
| void
|
| FUNC_lang (void)
|
| {
|
| }
|
|
|
| +asm (".globl FUNC_lang_end");
|
| +asm ("FUNC_lang_end:");
|
| +
|
| /* Symbol is present only in ELF .symtab. */
|
|
|
| void
|
| @@ -36,3 +45,6 @@ main (void)
|
| FUNC_symtab ();
|
| return 0;
|
| }
|
| +
|
| +asm (".globl cu_text_end");
|
| +asm ("cu_text_end:");
|
|
|