aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.trace/entry-values.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.trace/entry-values.c')
-rw-r--r--gdb/testsuite/gdb.trace/entry-values.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/gdb/testsuite/gdb.trace/entry-values.c b/gdb/testsuite/gdb.trace/entry-values.c
index 11bb739..c0d561a 100644
--- a/gdb/testsuite/gdb.trace/entry-values.c
+++ b/gdb/testsuite/gdb.trace/entry-values.c
@@ -15,23 +15,19 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
-asm (".section \".text\"");
-asm (".balign 8");
-asm ("foo_start: .globl foo_start");
-
int
foo (int i, int j)
{
+ asm ("foo_label: .globl foo_label");
return 0;
}
-asm ("bar_start: .globl bar_start");
-
int
bar (int i)
{
int j = 2;
+ asm ("bar_label: .globl bar_label");
return foo (i, j);
}