diff options
author | Gabor Greif <ggreif@gmail.com> | 2017-03-17 10:20:42 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2017-03-17 10:20:42 +0100 |
commit | 7a38783b72f86afda14ada2155e63491ced2e7de (patch) | |
tree | 72982f34f101d023a6c54da9ae627084001d6dff /rts | |
parent | 138434fbef32ec86733747bdbc57f6da73cad500 (diff) | |
download | haskell-7a38783b72f86afda14ada2155e63491ced2e7de.tar.gz |
Typos in manual and comments [ci skip]
Diffstat (limited to 'rts')
-rw-r--r-- | rts/Adjustor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Adjustor.c b/rts/Adjustor.c index 9f5a000fef..c7dcc8cfd6 100644 --- a/rts/Adjustor.c +++ b/rts/Adjustor.c @@ -718,7 +718,7 @@ createAdjustor(int cconv, StgStablePtr hptr, To do this, we extend the *caller's* stack frame by 2 words and shift the output registers used for argument passing (%o0 - %o5, we are a *leaf* procedure because of the tail-jump) by 2 positions. This makes room in - %o0 and %o1 for the additinal arguments, namely hptr and a dummy (used + %o0 and %o1 for the additional arguments, namely hptr and a dummy (used for destination addr of jump on SPARC, return address on x86, ...). This shouldn't cause any problems for a C-like caller: alloca is implemented similarly, and local variables should be accessed via %fp, not %sp. In a |