Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
0ea009fc
Commit
0ea009fc
authored
Sep 15, 2001
by
Aldy Hernandez
Committed by
Aldy Hernandez
Sep 15, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* 980223.c: Change type of addr from long to char *.
From-SVN: r45635
parent
69e47210
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
gcc/testsuite/ChangeLog
+5
-0
gcc/testsuite/gcc.c-torture/execute/980223.c
+5
-5
No files found.
gcc/testsuite/ChangeLog
View file @
0ea009fc
2001-09-15 Aldy Hernandez <aldyh@redhat.com>
* gcc.c-torture/execute/980223.c: Change type of addr from long
to char *.
2001-09-15 Hans-Peter Nilsson <hp@axis.com>
* gcc.c-torture/execute/20010915-1.c: New test.
...
...
gcc/testsuite/gcc.c-torture/execute/980223.c
View file @
0ea009fc
typedef
struct
{
long
addr
;
long
type
;
}
object
;
typedef
struct
{
char
*
addr
;
long
type
;
}
object
;
object
bar
(
object
blah
)
{
...
...
@@ -19,13 +19,13 @@ object foo (object x, object y)
}
int
nil
;
object
cons1
[
2
]
=
{
{(
long
)
&
nil
,
0
},
{(
long
)
&
nil
,
0
}
};
object
cons2
[
2
]
=
{
{(
long
)
&
cons1
,
64
},
{(
long
)
&
nil
,
0
}
};
object
cons1
[
2
]
=
{
{(
char
*
)
&
nil
,
0
},
{(
char
*
)
&
nil
,
0
}
};
object
cons2
[
2
]
=
{
{(
char
*
)
&
cons1
,
64
},
{(
char
*
)
&
nil
,
0
}
};
main
()
{
object
x
=
{(
long
)
&
cons2
,
64
};
object
y
=
{(
long
)
&
nil
,
0
};
object
x
=
{(
char
*
)
&
cons2
,
64
};
object
y
=
{(
char
*
)
&
nil
,
0
};
object
three
=
foo
(
x
,
y
);
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment