diff options
author | tege <tege@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-07-07 03:49:12 +0000 |
---|---|---|
committer | tege <tege@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-07-07 03:49:12 +0000 |
commit | 38fcdd7b67405a71dbf63d6bc6e3f5ee2b8ba286 (patch) | |
tree | e741b1dd2a15fa9eda714efe2a37f61f7f5cb516 /gcc/longlong.h | |
parent | 5f0195348295ffd818d6f599e7a70c155086b5ec (diff) | |
download | gcc-38fcdd7b67405a71dbf63d6bc6e3f5ee2b8ba286.tar.gz |
(vax sdiv_qrnnd): Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@7667 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/longlong.h')
-rw-r--r-- | gcc/longlong.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/longlong.h b/gcc/longlong.h index 602606d907c..e811c736cd1 100644 --- a/gcc/longlong.h +++ b/gcc/longlong.h @@ -1040,7 +1040,7 @@ __xx.__i.__h = n1; __xx.__i.__l = n0; \ __asm__ ("ediv %3,%2,%0,%1" \ : "=g" (q), "=g" (r) \ - : "g" (__n1n0.ll), "g" (d)); \ + : "g" (__xx.__ll), "g" (d)); \ } while (0) #endif /* __vax__ */ |