[gcc(refs/vendors/ARM/heads/arm-perf-staging)] Remove parenthesis from return statements in i386.md.
Tamar Christina
tnfchris@gcc.gnu.org
Fri Jul 17 12:52:19 GMT 2020
https://gcc.gnu.org/g:a59658eaefafb485063e3980ff55925027f95e6f
commit a59658eaefafb485063e3980ff55925027f95e6f
Author: Uros Bizjak <ubizjak@gmail.com>
Date: Thu Feb 6 18:32:42 2020 +0100
Remove parenthesis from return statements in i386.md.
Diff:
---
gcc/config/i386/i386.md | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md
index 34649c010b8..f14683cd14f 100644
--- a/gcc/config/i386/i386.md
+++ b/gcc/config/i386/i386.md
@@ -3032,7 +3032,7 @@
"TARGET_64BIT || TARGET_SSE"
{
/* This insn should be already split before reg-stack. */
- return ("#");
+ return "#";
}
[(set_attr "isa" "*,x64")
(set_attr "type" "multi")
@@ -3087,7 +3087,7 @@
""
{
/* This insn should be already split before reg-stack. */
- return ("#");
+ return "#";
}
[(set_attr "isa" "*,*,*,nox64,x64")
(set_attr "type" "multi")
@@ -3123,7 +3123,7 @@
""
{
/* This insn should be already split before reg-stack. */
- return ("#");
+ return "#";
}
[(set_attr "isa" "*,nox64,nox64,nox64,x64,sse2")
(set_attr "type" "multi")
@@ -3157,7 +3157,7 @@
{
/* Anything else should be already split before reg-stack. */
if (which_alternative != 1)
- return ("#");
+ return "#";
return "push{q}\t%q1";
}
[(set_attr "type" "multi,push,multi")
@@ -3171,7 +3171,7 @@
{
/* Anything else should be already split before reg-stack. */
if (which_alternative != 1)
- return ("#");
+ return "#";
return "push{l}\t%1";
}
[(set_attr "type" "multi,push,multi")
More information about the Gcc-cvs
mailing list