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
4d0e904f
Commit
4d0e904f
authored
May 03, 2017
by
Uros Bizjak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pr79671_0.C (foo): Fix asm constraints.
* g++.dg/lto/pr79671_0.C (foo): Fix asm constraints. From-SVN: r247550
parent
d1b5f5cc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/testsuite/ChangeLog
+6
-1
gcc/testsuite/g++.dg/lto/pr79671_0.C
+1
-1
No files found.
gcc/testsuite/ChangeLog
View file @
4d0e904f
2017-05-03 Uros Bizjak <ubizjak@gmail.com>
* g++.dg/lto/pr79671_0.C (foo): Fix asm constraints.
2017-05-03 Richard Biener <rguenther@suse.de>
2017-05-03 Richard Biener <rguenther@suse.de>
* gcc.dg/vect/costmodel/x86_64/costmodel-alignpeel.c: New testcase.
* gcc.dg/vect/costmodel/x86_64/costmodel-alignpeel.c: New testcase.
...
@@ -5,7 +9,8 @@
...
@@ -5,7 +9,8 @@
2017-05-03 Jakub Jelinek <jakub@redhat.com>
2017-05-03 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/79472
PR tree-optimization/79472
* gcc.dg/tree-ssa/vrp40.c: Add -fno-tree-switch-conversion to dg-options.
* gcc.dg/tree-ssa/vrp40.c: Add -fno-tree-switch-conversion
to dg-options.
* gcc.dg/tree-ssa/vrp113.c: New test.
* gcc.dg/tree-ssa/vrp113.c: New test.
* gcc.dg/tree-ssa/cswtch-3.c: New test.
* gcc.dg/tree-ssa/cswtch-3.c: New test.
* gcc.dg/tree-ssa/cswtch-4.c: New test.
* gcc.dg/tree-ssa/cswtch-4.c: New test.
...
...
gcc/testsuite/g++.dg/lto/pr79671_0.C
View file @
4d0e904f
...
@@ -13,7 +13,7 @@ int __attribute__((noinline)) foo()
...
@@ -13,7 +13,7 @@ int __attribute__((noinline)) foo()
new
(
&
x
)
B
(
0
);
new
(
&
x
)
B
(
0
);
y
=
x
;
y
=
x
;
B
*
q
=
reinterpret_cast
<
B
*>
(
&
y
);
B
*
q
=
reinterpret_cast
<
B
*>
(
&
y
);
asm
volatile
(
""
:
"
=r"
(
q
)
:
"
r"
(
q
));
asm
volatile
(
""
:
"
+
r"
(
q
));
return
q
->
i
;
return
q
->
i
;
}
}
extern
"C"
void
bar
();
extern
"C"
void
bar
();
...
...
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