Skip to content

Commit

Permalink
* sysdeps/sh/bits/setjmp.h (_JMPBUF_UNWINDS): Remove incorrect &.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Nov 16, 2005
1 parent c2280dc commit ff27f3a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2005-11-16 Kaz Kojima <kkojima@rr.iij4u.or.jp>

* sysdeps/sh/bits/setjmp.h (_JMPBUF_UNWINDS): Remove incorrect &.

2005-11-15 Ulrich Drepper <drepper@redhat.com>

[BZ 1865]
Expand Down
4 changes: 2 additions & 2 deletions sysdeps/sh/bits/setjmp.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 1999, 2000, 2003 Free Software Foundation, Inc.
/* Copyright (C) 1999, 2000, 2003, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
Expand Down Expand Up @@ -51,6 +51,6 @@ typedef struct
/* Test if longjmp to JMPBUF would unwind the frame
containing a local variable at ADDRESS. */
#define _JMPBUF_UNWINDS(jmpbuf, address) \
((void *) (address) < &(jmpbuf)[0].__regs[7])
((void *) (address) < (jmpbuf)[0].__regs[7])

#endif /* bits/setjmp.h */

0 comments on commit ff27f3a

Please sign in to comment.