public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/11535] New: __builtin_return_address may not work on ia64
@ 2003-07-16  0:37 hjl at lucon dot org
  2003-07-16  5:39 ` [Bug target/11535] " hjl at lucon dot org
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: hjl at lucon dot org @ 2003-07-16  0:37 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11535

           Summary: __builtin_return_address may not work on ia64
           Product: gcc
           Version: 3.4
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: target
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: hjl at lucon dot org
                CC: gcc-bugs at gcc dot gnu dot org

# cat x.c
#include <stdio.h>
 
int
main()
{
  int addr;
 
  addr = __builtin_return_address (0);
 
  printf("%d\n", addr);
  return 0;
}

# /usr/gcc-3.4/bin/gcc -O x.c
x.c: In function `main':
x.c:8: warning: assignment makes integer from pointer without a cast
/tmp/ccoJdxcc.o(.text+0x11): In function `main':
: undefined reference to `retaddr'
collect2: ld returned 1 exit status


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug target/11535] __builtin_return_address may not work on ia64
  2003-07-16  0:37 [Bug target/11535] New: __builtin_return_address may not work on ia64 hjl at lucon dot org
@ 2003-07-16  5:39 ` hjl at lucon dot org
  2003-07-17 22:11 ` rth at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: hjl at lucon dot org @ 2003-07-16  5:39 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11535


hjl at lucon dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2003-07-16 05:38:58
               date|                            |


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug target/11535] __builtin_return_address may not work on ia64
  2003-07-16  0:37 [Bug target/11535] New: __builtin_return_address may not work on ia64 hjl at lucon dot org
  2003-07-16  5:39 ` [Bug target/11535] " hjl at lucon dot org
@ 2003-07-17 22:11 ` rth at gcc dot gnu dot org
  2003-07-30 16:37 ` hjl at lucon dot org
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: rth at gcc dot gnu dot org @ 2003-07-17 22:11 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11535


rth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |rth at gcc dot gnu dot org
                   |dot org                     |
             Status|NEW                         |ASSIGNED


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug target/11535] __builtin_return_address may not work on ia64
  2003-07-16  0:37 [Bug target/11535] New: __builtin_return_address may not work on ia64 hjl at lucon dot org
  2003-07-16  5:39 ` [Bug target/11535] " hjl at lucon dot org
  2003-07-17 22:11 ` rth at gcc dot gnu dot org
@ 2003-07-30 16:37 ` hjl at lucon dot org
  2003-07-30 17:43 ` hjl at lucon dot org
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: hjl at lucon dot org @ 2003-07-30 16:37 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11535


hjl at lucon dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |critical


------- Additional Comments From hjl at lucon dot org  2003-07-30 16:37 -------
I think the fundamental problem is we treat b0 as a general register,
which is not true. b0 can only be accessed by mov. As it stands now,
gcc generates all kinds of invalid operations on b0/retaddr.


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug target/11535] __builtin_return_address may not work on ia64
  2003-07-16  0:37 [Bug target/11535] New: __builtin_return_address may not work on ia64 hjl at lucon dot org
                   ` (2 preceding siblings ...)
  2003-07-30 16:37 ` hjl at lucon dot org
@ 2003-07-30 17:43 ` hjl at lucon dot org
  2003-08-01 20:28 ` hjl at lucon dot org
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: hjl at lucon dot org @ 2003-07-30 17:43 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11535



------- Additional Comments From hjl at lucon dot org  2003-07-30 17:43 -------
A new testcase:

[hjl@gnu-2 tmp] $cat x.c
#include <stdio.h>
  
int addr_foo [1];
int addr_bar;
 
void
foo ()
{
  addr_foo [0] = (int) (long long) __builtin_return_address (0);
  printf("0x%x\n", addr_foo [0]);
}
 
void
bar ()
{
  addr_bar = (int) (long long) __builtin_return_address (0);
  printf("0x%x\n", addr_bar);
}
 
int
main()
{
  foo ();
  bar ();
  return 0;
}
[hjl@gnu-2 tmp]$ /usr/gcc-3.4/bin/gcc x.c
[hjl@gnu-2 tmp]$ ./a.out
0x710
0x730
[hjl@gnu-2 tmp]$ /usr/gcc-3.4/bin/gcc x.c -O
/tmp/ccpLcZLd.s: Assembler messages:
/tmp/ccpLcZLd.s:23: Error: Operand 2 of `st4' should be a general register
/tmp/ccpLcZLd.s:51: Error: Operand 2 of `st4' should be a general register


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug target/11535] __builtin_return_address may not work on ia64
  2003-07-16  0:37 [Bug target/11535] New: __builtin_return_address may not work on ia64 hjl at lucon dot org
                   ` (3 preceding siblings ...)
  2003-07-30 17:43 ` hjl at lucon dot org
@ 2003-08-01 20:28 ` hjl at lucon dot org
  2003-08-01 20:58 ` sje at cup dot hp dot com
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: hjl at lucon dot org @ 2003-08-01 20:28 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11535


hjl at lucon dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |sje at cup dot hp dot com


------- Additional Comments From hjl at lucon dot org  2003-08-01 20:27 -------
Another testcase. Steve Ellcey's patch doesn't work.

[hjl@gnu rp]$ cat y.c
#include <stdio.h>
  
int addr_foo [1];
int addr_bar;
 
void
foo ()
{
  volatile long long a = __builtin_return_address (0);
  addr_foo [0] = (int) (long long) a;
  printf("0x%x\n", addr_foo [0]);
}
[hjl@gnu rp]$ /export/build/linux/tools-3.3-redhat/build-ia64-linux/gcc/xgcc
-B/export/build/linux/tools-3.3-redhat/build-ia64-linux/gcc/ -I. -Wall -O y.c -S
y.c: In function `foo':
y.c:9: warning: initialization makes integer from pointer without a cast
y.c:12: internal compiler error: in instantiate_virtual_regs_lossage, at
function.c:3777
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://bugzilla.redhat.com/bugzilla> for instructions.


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug target/11535] __builtin_return_address may not work on ia64
  2003-07-16  0:37 [Bug target/11535] New: __builtin_return_address may not work on ia64 hjl at lucon dot org
                   ` (4 preceding siblings ...)
  2003-08-01 20:28 ` hjl at lucon dot org
@ 2003-08-01 20:58 ` sje at cup dot hp dot com
  2003-08-08 22:07 ` cvs-commit at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sje at cup dot hp dot com @ 2003-08-01 20:58 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11535



------- Additional Comments From sje at cup dot hp dot com  2003-08-01 20:58 -------
Subject: Re:  __builtin_return_address may not work on ia64

I am not sure how to tie my mail to gcc-patches into the bugzilla tracking
but I have submitted a new patch to fix this.  The new patch is

	http://gcc.gnu.org/ml/gcc-patches/2003-08/msg00090.html

and it replaces

	http://gcc.gnu.org/ml/gcc-patches/2003-07/msg02993.html

but the patch

	http://gcc.gnu.org/ml/gcc-patches/2003-07/msg02962.html

is still needed as well for a complete fix.

Steve Ellcey
sje@cup.hp.com


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug target/11535] __builtin_return_address may not work on ia64
  2003-07-16  0:37 [Bug target/11535] New: __builtin_return_address may not work on ia64 hjl at lucon dot org
                   ` (5 preceding siblings ...)
  2003-08-01 20:58 ` sje at cup dot hp dot com
@ 2003-08-08 22:07 ` cvs-commit at gcc dot gnu dot org
  2003-08-08 23:50 ` cvs-commit at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-08-08 22:07 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11535



------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-08-08 22:07 -------
Subject: Bug 11535

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_3-branch
Changes by:	rth@gcc.gnu.org	2003-08-08 22:07:15

Modified files:
	gcc            : ChangeLog 
	gcc/config/ia64: ia64-protos.h ia64.c ia64.h ia64.md 

Log message:
	PR target/11535
	* config/ia64/ia64.c (ia64_initial_elimination_offset): Remove
	RETURN_ADDRESS_POINTER_REGNUM.
	(ia64_expand_prologue): Don't frob it.
	(ia64_output_function_epilogue): Likewise.
	(ia64_return_addr_rtx): New.
	(ia64_split_return_addr_rtx): New.
	* config/ia64/ia64-protos.h: Update.
	* config/ia64/ia64.h (FIRST_PSEUDO_REGISTER): Decrement.
	(RETURN_ADDRESS_POINTER_REGNUM): Remove.
	(GENERAL_REGNO_P): Don't check it.
	(AR_*_REGNUM): Renumber.
	(FIXED_REGISTERS): Remove RETURN_ADDRESS_POINTER_REGNUM.
	(CALL_USED_REGISTERS, CALL_REALLY_USED_REGISTERS): Likewise.
	(REG_ALLOC_ORDER, REG_CLASS_CONTENTS): Likewise.
	(ELIMINABLE_REGS, REGISTER_NAMES): Likewise.
	(RETURN_ADDR_RTX): Use ia64_return_addr_rtx.
	* config/ia64/ia64.md (UNSPEC_RET_ADDR): New.
	(movdi_ret_addr): New.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.16114.2.697&r2=1.16114.2.698
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/ia64/ia64-protos.h.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.49.4.2&r2=1.49.4.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/ia64/ia64.c.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.198.2.10&r2=1.198.2.11
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/ia64/ia64.h.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.135.2.4&r2=1.135.2.5
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/ia64/ia64.md.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.94.4.7&r2=1.94.4.8


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug target/11535] __builtin_return_address may not work on ia64
  2003-07-16  0:37 [Bug target/11535] New: __builtin_return_address may not work on ia64 hjl at lucon dot org
                   ` (6 preceding siblings ...)
  2003-08-08 22:07 ` cvs-commit at gcc dot gnu dot org
@ 2003-08-08 23:50 ` cvs-commit at gcc dot gnu dot org
  2003-08-08 23:51 ` rth at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-08-08 23:50 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11535



------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-08-08 23:50 -------
Subject: Bug 11535

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	rth@gcc.gnu.org	2003-08-08 23:49:57

Modified files:
	gcc/config/ia64: ia64-protos.h ia64.c ia64.h ia64.md 

Log message:
	PR target/11535
	* config/ia64/ia64.c (ia64_initial_elimination_offset): Remove
	RETURN_ADDRESS_POINTER_REGNUM.
	(ia64_expand_prologue): Don't frob it.
	(ia64_output_function_epilogue): Likewise.
	(ia64_return_addr_rtx): New.
	(ia64_split_return_addr_rtx): New.
	* config/ia64/ia64-protos.h: Update.
	* config/ia64/ia64.h (FIRST_PSEUDO_REGISTER): Decrement.
	(RETURN_ADDRESS_POINTER_REGNUM): Remove.
	(GENERAL_REGNO_P): Don't check it.
	(AR_*_REGNUM): Renumber.
	(FIXED_REGISTERS): Remove RETURN_ADDRESS_POINTER_REGNUM.
	(CALL_USED_REGISTERS, CALL_REALLY_USED_REGISTERS): Likewise.
	(REG_ALLOC_ORDER, REG_CLASS_CONTENTS): Likewise.
	(ELIMINABLE_REGS, REGISTER_NAMES): Likewise.
	(RETURN_ADDR_RTX): Use ia64_return_addr_rtx.
	* config/ia64/ia64.md (UNSPEC_RET_ADDR): New.
	(movdi_ret_addr): New.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/ia64/ia64-protos.h.diff?cvsroot=gcc&r1=1.59&r2=1.60
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/ia64/ia64.c.diff?cvsroot=gcc&r1=1.238&r2=1.239
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/ia64/ia64.h.diff?cvsroot=gcc&r1=1.155&r2=1.156
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/ia64/ia64.md.diff?cvsroot=gcc&r1=1.110&r2=1.111


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug target/11535] __builtin_return_address may not work on ia64
  2003-07-16  0:37 [Bug target/11535] New: __builtin_return_address may not work on ia64 hjl at lucon dot org
                   ` (7 preceding siblings ...)
  2003-08-08 23:50 ` cvs-commit at gcc dot gnu dot org
@ 2003-08-08 23:51 ` rth at gcc dot gnu dot org
  2003-08-11 21:54 ` cvs-commit at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: rth at gcc dot gnu dot org @ 2003-08-08 23:51 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11535


rth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|3.4                         |3.3.2


------- Additional Comments From rth at gcc dot gnu dot org  2003-08-08 23:51 -------
http://gcc.gnu.org/ml/gcc-patches/2003-08/msg00283.html


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug target/11535] __builtin_return_address may not work on ia64
  2003-07-16  0:37 [Bug target/11535] New: __builtin_return_address may not work on ia64 hjl at lucon dot org
                   ` (8 preceding siblings ...)
  2003-08-08 23:51 ` rth at gcc dot gnu dot org
@ 2003-08-11 21:54 ` cvs-commit at gcc dot gnu dot org
  2003-08-12 14:16 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-08-11 21:54 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11535



------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-08-11 21:54 -------
Subject: Bug 11535

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	jakub@gcc.gnu.org	2003-08-11 21:53:58

Modified files:
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/gcc.c-torture/execute: 20030811-1.c 
	gcc/testsuite/gcc.dg: 20030811-1.c 

Log message:
	PR target/11693
	* gcc.dg/20030811-1.c: New test.
	
	PR target/11535
	* gcc.c-torture/execute/20030811-1.c: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.2966&r2=1.2967
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gcc.c-torture/execute/20030811-1.c.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gcc.dg/20030811-1.c.diff?cvsroot=gcc&r1=NONE&r2=1.1


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug target/11535] __builtin_return_address may not work on ia64
  2003-07-16  0:37 [Bug target/11535] New: __builtin_return_address may not work on ia64 hjl at lucon dot org
                   ` (9 preceding siblings ...)
  2003-08-11 21:54 ` cvs-commit at gcc dot gnu dot org
@ 2003-08-12 14:16 ` cvs-commit at gcc dot gnu dot org
  2003-08-12 14:19 ` cvs-commit at gcc dot gnu dot org
  2003-08-12 15:09 ` cvs-commit at gcc dot gnu dot org
  12 siblings, 0 replies; 14+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-08-12 14:16 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11535



------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-08-12 14:16 -------
Subject: Bug 11535

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_2-rhl8-branch
Changes by:	jakub@gcc.gnu.org	2003-08-12 14:16:45

Modified files:
	gcc            : ChangeLog 
	gcc/config/ia64: ia64-protos.h ia64.c ia64.h ia64.md 

Log message:
	PR target/11535
	* config/ia64/ia64.c (ia64_initial_elimination_offset): Remove
	RETURN_ADDRESS_POINTER_REGNUM.
	(ia64_expand_prologue): Don't frob it.
	(ia64_output_function_epilogue): Likewise.
	(ia64_return_addr_rtx): New.
	(ia64_split_return_addr_rtx): New.
	* config/ia64/ia64-protos.h: Update.
	* config/ia64/ia64.h (FIRST_PSEUDO_REGISTER): Decrement.
	(RETURN_ADDRESS_POINTER_REGNUM): Remove.
	(GENERAL_REGNO_P): Don't check it.
	(AR_*_REGNUM): Renumber.
	(FIXED_REGISTERS): Remove RETURN_ADDRESS_POINTER_REGNUM.
	(CALL_USED_REGISTERS, CALL_REALLY_USED_REGISTERS): Likewise.
	(REG_ALLOC_ORDER, REG_CLASS_CONTENTS): Likewise.
	(ELIMINABLE_REGS, REGISTER_NAMES): Likewise.
	(RETURN_ADDR_RTX): Use ia64_return_addr_rtx.
	* config/ia64/ia64.md (UNSPEC_RET_ADDR): New.
	(movdi_ret_addr): New.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_2-rhl8-branch&r1=1.13152.2.657.2.27.2.156&r2=1.13152.2.657.2.27.2.157
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/ia64/ia64-protos.h.diff?cvsroot=gcc&only_with_tag=gcc-3_2-rhl8-branch&r1=1.36.2.2.8.3&r2=1.36.2.2.8.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/ia64/ia64.c.diff?cvsroot=gcc&only_with_tag=gcc-3_2-rhl8-branch&r1=1.139.2.15.8.9&r2=1.139.2.15.8.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/ia64/ia64.h.diff?cvsroot=gcc&only_with_tag=gcc-3_2-rhl8-branch&r1=1.99.2.8.8.5&r2=1.99.2.8.8.6
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/ia64/ia64.md.diff?cvsroot=gcc&only_with_tag=gcc-3_2-rhl8-branch&r1=1.79.2.3.8.4&r2=1.79.2.3.8.5


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug target/11535] __builtin_return_address may not work on ia64
  2003-07-16  0:37 [Bug target/11535] New: __builtin_return_address may not work on ia64 hjl at lucon dot org
                   ` (10 preceding siblings ...)
  2003-08-12 14:16 ` cvs-commit at gcc dot gnu dot org
@ 2003-08-12 14:19 ` cvs-commit at gcc dot gnu dot org
  2003-08-12 15:09 ` cvs-commit at gcc dot gnu dot org
  12 siblings, 0 replies; 14+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-08-12 14:19 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11535



------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-08-12 14:19 -------
Subject: Bug 11535

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_2-rhl8-branch
Changes by:	jakub@gcc.gnu.org	2003-08-12 14:19:29

Modified files:
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/gcc.c-torture/execute: 20030811-1.c 
	gcc/testsuite/gcc.dg: 20030811-1.c 

Log message:
	PR target/11693
	* gcc.dg/20030811-1.c: New test.
	
	PR target/11535
	* gcc.c-torture/execute/20030811-1.c: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_2-rhl8-branch&r1=1.1672.2.166.2.8.2.65&r2=1.1672.2.166.2.8.2.66
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gcc.c-torture/execute/20030811-1.c.diff?cvsroot=gcc&only_with_tag=gcc-3_2-rhl8-branch&r1=NONE&r2=1.1.2.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gcc.dg/20030811-1.c.diff?cvsroot=gcc&only_with_tag=gcc-3_2-rhl8-branch&r1=NONE&r2=1.1.2.1


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug target/11535] __builtin_return_address may not work on ia64
  2003-07-16  0:37 [Bug target/11535] New: __builtin_return_address may not work on ia64 hjl at lucon dot org
                   ` (11 preceding siblings ...)
  2003-08-12 14:19 ` cvs-commit at gcc dot gnu dot org
@ 2003-08-12 15:09 ` cvs-commit at gcc dot gnu dot org
  12 siblings, 0 replies; 14+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-08-12 15:09 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11535



------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-08-12 15:09 -------
Subject: Bug 11535

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_3-rhl-branch
Changes by:	jakub@gcc.gnu.org	2003-08-12 15:09:47

Modified files:
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/gcc.c-torture/execute: 20030811-1.c 
	gcc/testsuite/gcc.dg: 20030811-1.c 

Log message:
	PR target/11693
	* gcc.dg/20030811-1.c: New test.
	
	PR target/11535
	* gcc.c-torture/execute/20030811-1.c: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-rhl-branch&r1=1.2261.2.170.2.30&r2=1.2261.2.170.2.31
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gcc.c-torture/execute/20030811-1.c.diff?cvsroot=gcc&only_with_tag=gcc-3_3-rhl-branch&r1=NONE&r2=1.1.4.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gcc.dg/20030811-1.c.diff?cvsroot=gcc&only_with_tag=gcc-3_3-rhl-branch&r1=NONE&r2=1.1.4.1


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2003-08-12 15:09 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-16  0:37 [Bug target/11535] New: __builtin_return_address may not work on ia64 hjl at lucon dot org
2003-07-16  5:39 ` [Bug target/11535] " hjl at lucon dot org
2003-07-17 22:11 ` rth at gcc dot gnu dot org
2003-07-30 16:37 ` hjl at lucon dot org
2003-07-30 17:43 ` hjl at lucon dot org
2003-08-01 20:28 ` hjl at lucon dot org
2003-08-01 20:58 ` sje at cup dot hp dot com
2003-08-08 22:07 ` cvs-commit at gcc dot gnu dot org
2003-08-08 23:50 ` cvs-commit at gcc dot gnu dot org
2003-08-08 23:51 ` rth at gcc dot gnu dot org
2003-08-11 21:54 ` cvs-commit at gcc dot gnu dot org
2003-08-12 14:16 ` cvs-commit at gcc dot gnu dot org
2003-08-12 14:19 ` cvs-commit at gcc dot gnu dot org
2003-08-12 15:09 ` cvs-commit at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).