summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2020-03-28 17:43:19 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-03-28 17:43:19 +0100
commit4847331ea3d7b77be3a0f280ad52d4c58c578bdb (patch)
tree7ab1e1517eb5277081428fc83756a6eebb9f24a3
parent5965aa34e7609d73bd065a82f52fe346876a33f1 (diff)
Fix size of function syscall
* x86_64/locore.S (syscall): Add END(syscall).
-rw-r--r--x86_64/locore.S2
1 files changed, 2 insertions, 0 deletions
diff --git a/x86_64/locore.S b/x86_64/locore.S
index ca7a1a9b..4896727f 100644
--- a/x86_64/locore.S
+++ b/x86_64/locore.S
@@ -1257,6 +1257,8 @@ DATA(cpu_features)
.long 0
.text
+END(syscall)
+
/* Discover what kind of cpu we have; return the family number
(3, 4, 5, 6, for 386, 486, 586, 686 respectively). */
ENTRY(discover_x86_cpu_type)