diff options
author | Roland McGrath <mcgrathr@google.com> | 2013-10-30 15:57:58 -0700 |
---|---|---|
committer | Roland McGrath <mcgrathr@google.com> | 2013-10-30 16:01:06 -0700 |
commit | dd0845d708ab82f931fd7b800b4d218842ed635f (patch) | |
tree | d5209766dae66ba80645d149af472de2f6a9ba90 /gold/x86_64.cc | |
parent | 856ff3311a36bfc89decc626cc759271ca0306fe (diff) | |
download | gdb-dd0845d708ab82f931fd7b800b4d218842ed635f.zip gdb-dd0845d708ab82f931fd7b800b4d218842ed635f.tar.gz gdb-dd0845d708ab82f931fd7b800b4d218842ed635f.tar.bz2 |
gold: x86_64-nacl: Correct 9-byte nop sequence to match what the assembler generates.
gold/
* x86_64.cc (Output_data_plt_x86_64_nacl::first_plt_entry):
Correct 9-byte nop sequence to match what the assembler generates.
Diffstat (limited to 'gold/x86_64.cc')
-rw-r--r-- | gold/x86_64.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gold/x86_64.cc b/gold/x86_64.cc index b95d2ed..b9f9f17 100644 --- a/gold/x86_64.cc +++ b/gold/x86_64.cc @@ -4649,7 +4649,7 @@ Output_data_plt_x86_64_nacl<size>::first_plt_entry[plt_entry_size] = 0x41, 0xff, 0xe3, // jmpq *%r11 // 9-byte nop sequence to pad out to the next 32-byte boundary. - 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, // nopl %cs:0x0(%rax,%rax,1) + 0x66, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, // nopw 0x0(%rax,%rax,1) // 32 bytes of nop to pad out to the standard size 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, // excess data32 prefixes |