diff options
author | Torbjorn Granlund <tege@gnu.org> | 1994-07-07 03:49:12 +0000 |
---|---|---|
committer | Torbjorn Granlund <tege@gnu.org> | 1994-07-07 03:49:12 +0000 |
commit | 451c2f82ea4325edcc716a47a7d9b3cf622c829d (patch) | |
tree | e741b1dd2a15fa9eda714efe2a37f61f7f5cb516 /gcc/longlong.h | |
parent | 61d6b1cca163eda08e3b93f3032cc53d3f9b2de8 (diff) | |
download | gcc-451c2f82ea4325edcc716a47a7d9b3cf622c829d.tar.gz |
(vax sdiv_qrnnd): Fix typo.
From-SVN: r7667
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__ */ |