diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-17 04:55:25 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-17 04:55:25 +0000 |
commit | 5ab08585daa4f6d571049baee701833f0760fc05 (patch) | |
tree | f456ad6c679005d9c61bd3b40403502f19d75172 /gcc/config/i386/unix.h | |
parent | a0d38f0be40ac803ca2809f85ab98fce8137df5c (diff) | |
download | gcc-5ab08585daa4f6d571049baee701833f0760fc05.tar.gz |
* config/i386/unix.h (ASM_OUTPUT_MI_THUNK): Fix output format for
x86-64 pic support.
* lcm.c (optimize_mode_switching): Avoid warning for unused
variable if !NORMAL_MODE
* flow.c (try_crossjump_to_edge): Remove unused variable.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44062 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/unix.h')
-rw-r--r-- | gcc/config/i386/unix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/unix.h b/gcc/config/i386/unix.h index 25dec9ab358..63c68cb4e42 100644 --- a/gcc/config/i386/unix.h +++ b/gcc/config/i386/unix.h @@ -128,7 +128,7 @@ do { \ { \ fprintf (FILE, "\tjmp *"); \ assemble_name (FILE, XSTR (XEXP (DECL_RTL (FUNCTION), 0), 0)); \ - fprintf (FILE, "@GOTPCREL(%RIP)\n"); \ + fprintf (FILE, "@GOTPCREL(%%RIP)\n"); \ } \ else \ { \ |