Skip to content

Commit

Permalink
gcc/testsuite/
Browse files Browse the repository at this point in the history
	* gcc.target/mips/pr55315.c: Cast to long rather than int.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194704 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
rsandifo committed Dec 23, 2012
1 parent 5074f66 commit 270b9af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions gcc/testsuite/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2012-12-23 Richard Sandiford <rdsandiford@googlemail.com>

* gcc.target/mips/pr55315.c: Cast to long rather than int.

2012-12-22 Tobias Burnus <burnus@net-b.de>

PR fortran/55763
Expand Down
2 changes: 1 addition & 1 deletion gcc/testsuite/gcc.target/mips/pr55315.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ int data[4096];
int
f (void)
{
return (((unsigned int) &data[0]) == 0xdeadbea0U);
return (((unsigned long) &data[0]) == 0xdeadbea0U);
}

/* { dg-final { scan-assembler-not "\tmove\t\\\$2,\\\$0" } } */

0 comments on commit 270b9af

Please sign in to comment.