diff options
author | marcel <marcel@FreeBSD.org> | 2003-07-15 03:50:38 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2003-07-15 03:50:38 +0000 |
commit | 5d3117d7f019af6851b4a514a8944c2f0850a527 (patch) | |
tree | 061a8e8b656dbe4ec43faf4a2735ba9ef96d4da2 /lib/csu | |
parent | 247e2b71dea2a27e907220803e21e7a5675df8c2 (diff) | |
download | FreeBSD-src-5d3117d7f019af6851b4a514a8944c2f0850a527.zip FreeBSD-src-5d3117d7f019af6851b4a514a8944c2f0850a527.tar.gz |
Fix typo: Passing the first argument to exit() in out2 does not work.
Trust me.
Diffstat (limited to 'lib/csu')
-rw-r--r-- | lib/csu/ia64/crt1.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/csu/ia64/crt1.S b/lib/csu/ia64/crt1.S index 362079c..9d6fb53 100644 --- a/lib/csu/ia64/crt1.S +++ b/lib/csu/ia64/crt1.S @@ -169,7 +169,7 @@ _start: } { .mib mov gp=GP - mov out2=r8 + mov out0=r8 br.call.sptk b0=exit ;; } |