Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
e4d0c41c
Commit
e4d0c41c
authored
May 19, 2005
by
Richard Henderson
Committed by
Richard Henderson
May 19, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* unwind.h, unwind-pe.h: Revert gcc_unreachable change of 05-17.
From-SVN: r100001
parent
65869a72
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
6 deletions
+16
-6
gcc/ChangeLog
+4
-0
gcc/unwind-pe.h
+10
-5
gcc/unwind.h
+2
-1
No files found.
gcc/ChangeLog
View file @
e4d0c41c
2005-05-19 Richard Henderson <rth@redhat.com>
* unwind.h, unwind-pe.h: Revert gcc_unreachable change of 05-17.
2005-05-19 Richard Henderson <rth@redhat.com>
* config/i386/sse.md (mulv4si3): Use all register inputs.
(mulv2di3): Likewise.
...
...
gcc/unwind-pe.h
View file @
e4d0c41c
...
...
@@ -34,6 +34,13 @@
#ifndef GCC_UNWIND_PE_H
#define GCC_UNWIND_PE_H
/* If using C++, references to abort have to be qualified with std::. */
#if __cplusplus
#define __gxx_abort std::abort
#else
#define __gxx_abort abort
#endif
/* Pointer encodings, from dwarf2.h. */
#define DW_EH_PE_absptr 0x00
#define DW_EH_PE_omit 0xff
...
...
@@ -79,9 +86,8 @@ size_of_encoded_value (unsigned char encoding)
return
4
;
case
DW_EH_PE_udata8
:
return
8
;
default
:
gcc_unreachable
();
}
__gxx_abort
();
}
#endif
...
...
@@ -112,9 +118,8 @@ base_of_encoded_value (unsigned char encoding, struct _Unwind_Context *context)
return
_Unwind_GetDataRelBase
(
context
);
case
DW_EH_PE_funcrel
:
return
_Unwind_GetRegionStart
(
context
);
default
:
gcc_unreachable
();
}
__gxx_abort
();
}
#endif
...
...
@@ -251,7 +256,7 @@ read_encoded_value_with_base (unsigned char encoding, _Unwind_Ptr base,
break
;
default
:
gcc_unreachable
();
__gxx_abort
();
}
if
(
result
!=
0
)
...
...
gcc/unwind.h
View file @
e4d0c41c
...
...
@@ -214,7 +214,8 @@ _Unwind_GetDataRelBase (struct _Unwind_Context *_C)
static
inline
_Unwind_Ptr
_Unwind_GetTextRelBase
(
struct
_Unwind_Context
*
_C
__attribute__
((
__unused__
)))
{
gcc_unreachable
();
abort
();
return
0
;
}
/* @@@ Retrieve the Backing Store Pointer of the given context. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment