[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug gas/2117] IA64 assembler is broken
From: |
hjl at lucon dot org |
Subject: |
[Bug gas/2117] IA64 assembler is broken |
Date: |
6 Jan 2006 22:17:17 -0000 |
------- Additional Comments From hjl at lucon dot org 2006-01-06 22:17 -------
We have 2 problems here:
1. foo in
addl r3 = @ltoffx(foo#), gp
is treated differently from foo in
ld8.mov r3 = [r3], foo#
That is because the first "foo" is marked as O_max + 1 while the second "foo"
is marked as O_symbol. That is why they are treated differently.
2.
.global foo#
foo# = bar#
.global bar#
.data
bar:
data4 0
is treated differently from
.global bar#
.data
bar:
data4 0
.global foo#
foo# = bar#
--
http://sourceware.org/bugzilla/show_bug.cgi?id=2117
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.