diff options
| author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-20 10:33:05 +0000 |
|---|---|---|
| committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-20 10:33:05 +0000 |
| commit | 146129552eee23db0affdb84e4e395f1c18720ac (patch) | |
| tree | 6680d3c97bf6e88b66c084b72c07aba96067ab42 | |
| parent | a42e46f446f44971fd2ea895ca4f2954dd4a1ed0 (diff) | |
| download | ppe42-gcc-146129552eee23db0affdb84e4e395f1c18720ac.tar.gz ppe42-gcc-146129552eee23db0affdb84e4e395f1c18720ac.zip | |
* except.c: Delete #if 0:d EXCEPTION_SECTION_ASM_OP-default and
users.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36551 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/cp/except.c | 32 |
2 files changed, 5 insertions, 32 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index c29b29565e4..d71c9d78789 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2000-09-20 Hans-Peter Nilsson <hp@axis.com> + + * except.c: Delete #if 0:d EXCEPTION_SECTION_ASM_OP-default and + users. + 2000-09-18 Mark Mitchell <mark@codesourcery.com> * decl.c (start_function): Robustify. diff --git a/gcc/cp/except.c b/gcc/cp/except.c index ee2cf44675c..a26cb1a6580 100644 --- a/gcc/cp/except.c +++ b/gcc/cp/except.c @@ -60,38 +60,6 @@ static void initialize_handler_parm PARAMS ((tree)); static tree expand_throw PARAMS ((tree)); static int decl_is_java_type PARAMS ((tree decl, int err)); -#if 0 -/* This is the startup, and finish stuff per exception table. */ - -/* XXX - Tad: exception handling section */ -#ifndef EXCEPT_SECTION_ASM_OP -#define EXCEPT_SECTION_ASM_OP "section\t.gcc_except_table,\"a\",@progbits" -#endif - -#ifdef EXCEPT_SECTION_ASM_OP - - /* on machines which support it, the exception table lives in another section, - but it needs a label so we can reference it... This sets up that - label! */ -asm (EXCEPT_SECTION_ASM_OP); -exception_table __EXCEPTION_TABLE__[1] = { (void*)0, (void*)0, (void*)0 }; -asm (TEXT_SECTION_ASM_OP); - -#endif /* EXCEPT_SECTION_ASM_OP */ - -#ifdef EXCEPT_SECTION_ASM_OP - - /* we need to know where the end of the exception table is... so this - is how we do it! */ - -asm (EXCEPT_SECTION_ASM_OP); -exception_table __EXCEPTION_END__[1] = { (void*)-1, (void*)-1, (void*)-1 }; -asm (TEXT_SECTION_ASM_OP); - -#endif /* EXCEPT_SECTION_ASM_OP */ - -#endif - #include "decl.h" #include "insn-flags.h" #include "obstack.h" |

