Author: kib Date: Sat Nov 15 21:25:17 2014 New Revision: 274555 URL: https://svnweb.freebsd.org/changeset/base/274555
Log: Fix END()s for fueword and fueword64, match the name in END() with entry. Submitted by: Jeroen Hofstee <[email protected]> MFC after: 1 week Modified: head/sys/amd64/amd64/support.S Modified: head/sys/amd64/amd64/support.S ============================================================================== --- head/sys/amd64/amd64/support.S Sat Nov 15 20:02:22 2014 (r274554) +++ head/sys/amd64/amd64/support.S Sat Nov 15 21:25:17 2014 (r274555) @@ -426,8 +426,8 @@ ENTRY(fueword) movq %r11,(%rsi) POP_FRAME_POINTER ret -END(fuword64) -END(fuword) +END(fueword64) +END(fueword) ENTRY(fueword32) PUSH_FRAME_POINTER _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "[email protected]"
