mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-23 10:29:58 +01:00
Fix bug 1231.
Minor doc improvement.
This commit is contained in:
parent
9017b84423
commit
c253383ab1
@ -845,7 +845,8 @@ key rings.
|
|||||||
|
|
||||||
@c man:.RS
|
@c man:.RS
|
||||||
The listing shows you the key with its secondary keys and all user
|
The listing shows you the key with its secondary keys and all user
|
||||||
ids. Selected keys or user ids are indicated by an asterisk. The trust
|
ids. The primary user id is indicated by a dot, and selected keys or
|
||||||
|
user ids are indicated by an asterisk. The trust
|
||||||
value is displayed with the primary key: the first is the assigned owner
|
value is displayed with the primary key: the first is the assigned owner
|
||||||
trust and the second is the calculated trust value. Letters are used for
|
trust and the second is the calculated trust value. Letters are used for
|
||||||
the values:
|
the values:
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2010-06-01 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* longlong.h (umul_ppmm) <__mips__>: Add code for gcc 4.4. This
|
||||||
|
fixes bug#1231.
|
||||||
|
|
||||||
2009-12-09 Werner Koch <wk@g10code.com>
|
2009-12-09 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* config.links: Remove asm modules for all sparc64. This is
|
* config.links: Remove asm modules for all sparc64. This is
|
||||||
|
@ -710,7 +710,14 @@ extern USItype __udiv_qrnnd ();
|
|||||||
************** MIPS *****************
|
************** MIPS *****************
|
||||||
***************************************/
|
***************************************/
|
||||||
#if defined (__mips__) && W_TYPE_SIZE == 32
|
#if defined (__mips__) && W_TYPE_SIZE == 32
|
||||||
#if __GNUC__ > 2 || __GNUC_MINOR__ >= 7
|
#if __GNUC__ > 4 || ( __GNUC__ == 4 && __GNUC_MINOR >= 4 )
|
||||||
|
#define umul_ppmm(w1, w0, u, v) \
|
||||||
|
do { \
|
||||||
|
UDItype __ll = (UDItype)(u) * (v); \
|
||||||
|
w1 = __ll >> 32; \
|
||||||
|
w0 = __ll; \
|
||||||
|
} while (0)
|
||||||
|
#elif __GNUC__ > 2 || __GNUC_MINOR__ >= 7
|
||||||
#define umul_ppmm(w1, w0, u, v) \
|
#define umul_ppmm(w1, w0, u, v) \
|
||||||
__asm__ ("multu %2,%3" \
|
__asm__ ("multu %2,%3" \
|
||||||
: "=l" ((USItype)(w0)), \
|
: "=l" ((USItype)(w0)), \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user