diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-04-07 14:11:51 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-04-07 14:11:51 +0000 |
commit | 2035d91c389888fcf359698fecc20c05f7b583dd (patch) | |
tree | 275fd154a410e246408952e176c24a6a64713c47 /sysdeps/generic/unwind-dw2.c | |
parent | 053f7b2b47eeab73512697323068034c539914b5 (diff) | |
download | glibc-2035d91c389888fcf359698fecc20c05f7b583dd.tar.gz glibc-2035d91c389888fcf359698fecc20c05f7b583dd.tar.xz glibc-2035d91c389888fcf359698fecc20c05f7b583dd.zip |
* sysdeps/generic/unwind-dw2.c (execute_cfa_program): Fix typo in
the last change. DW_CFA_GNU_window_save if it obviously cannot work [Coverity CID 102].
Diffstat (limited to 'sysdeps/generic/unwind-dw2.c')
-rw-r--r-- | sysdeps/generic/unwind-dw2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/generic/unwind-dw2.c b/sysdeps/generic/unwind-dw2.c index 3fc0d931e9..5ecf2846f3 100644 --- a/sysdeps/generic/unwind-dw2.c +++ b/sysdeps/generic/unwind-dw2.c @@ -900,7 +900,7 @@ execute_cfa_program (const unsigned char *insn_ptr, /* ??? Hardcoded for SPARC register window configuration. At least do not do anything for archs which explicitly define a lower register number. */ -#if DWARF_FRAME_REGISTERS < 32 +#if DWARF_FRAME_REGISTERS >= 32 for (reg = 16; reg < 32; ++reg) { fs->regs.reg[reg].how = REG_SAVED_OFFSET; |