Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: gdb/testsuite/gdb.dwarf2/dw2-case-insensitive.c

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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:");
« no previous file with comments | « gdb/testsuite/gdb.dwarf2/dw2-canonicalize-type.exp ('k') | gdb/testsuite/gdb.dwarf2/dw2-case-insensitive.exp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698