diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-04 16:44:51 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-04 16:44:51 +0000 |
commit | 3fd62642d6a042a192f405ab559a0fef3c49f588 (patch) | |
tree | 183ccc7e9327b3b5ce962ea21bd520f0b9da84dc /gcc/function.h | |
parent | 2d93887b0dfd20fdaa76be712b7f1838a1cdcaab (diff) | |
download | gcc-3fd62642d6a042a192f405ab559a0fef3c49f588.tar.gz |
* function.c (trampolines_created): New variable.
(expand_function_end): Set it when doing INITIALIZE_TRAMPOLINE.
* function.h (trampolines_created): Add.
* config/s390/linux.h (ASM_FILE_END): Define.
* config/alpha/linux-elf.h (ASM_FILE_END): Define.
* config/m68k/linux.h (ASM_FILE_END): Define.
* config/rs6000/linux.h (ASM_FILE_END): Define.
* config/rs6000/linux64.h (ASM_FILE_END): Define.
* config/rs6000/ppc-asm.h: Add .note.GNU-stack on powerpc-linux.
* config/sparc/linux.h (ASM_FILE_END): Define.
* config/sparc/linux64.h (ASM_FILE_END): Define.
* config/i386/i386.c (ix86_asm_file_end): Use SUBTARGET_FILE_END.
* config/i386/linux.h (SUBTARGET_FILE_END): Define.
* config/i386/linux64.h (SUBTARGET_FILE_END): Define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67447 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/function.h b/gcc/function.h index d29b40c4469..f9db14c3cbc 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -513,6 +513,9 @@ extern GTY(()) struct function *cfun; /* Nonzero if we've already converted virtual regs to hard regs. */ extern int virtuals_instantiated; +/* Nonzero if at least one trampoline has been created. */ +extern int trampolines_created; + /* For backward compatibility... eventually these should all go away. */ #define current_function_name (cfun->name) #define current_function_pops_args (cfun->pops_args) |