summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVisa Hankala <visa@cvs.openbsd.org>2019-03-23 15:29:56 +0000
committerVisa Hankala <visa@cvs.openbsd.org>2019-03-23 15:29:56 +0000
commiteffc5ed450886188cc6834e83e36d7d6eb743998 (patch)
treee9e2933c451790f71e49d6f1981479c46d3b143b
parent8a34b066ad190472a493edbe7cf7d4f831a9e18d (diff)
Separate symbol name and type with a comma for consistency and
to make clang happier. No binary change with gas.
-rw-r--r--lib/csu/mips64/md_init.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/csu/mips64/md_init.h b/lib/csu/mips64/md_init.h
index 4522fd1293b..4a5d6bbfce3 100644
--- a/lib/csu/mips64/md_init.h
+++ b/lib/csu/mips64/md_init.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: md_init.h,v 1.15 2017/08/11 20:13:31 guenther Exp $ */
+/* $OpenBSD: md_init.h,v 1.16 2019/03/23 15:29:55 visa Exp $ */
/*-
* Copyright (c) 2001 Ross Harvey
@@ -61,7 +61,7 @@
".section "#sect",\"ax\",@progbits \n" \
".align 2 \n" \
".globl "#entry_pt" \n" \
- ".type "#entry_pt"@function \n" \
+ ".type "#entry_pt",@function \n" \
".ent "#entry_pt" \n" \
#entry_pt": \n" \
MD_FUNCTION_PROLOGUE(entry_pt) \