https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97453
--- Comment #2 from Kamlesh Kumar ---
patch: https://gcc.gnu.org/pipermail/gcc-patches/2020-October/556672.html
: unassigned at gcc dot gnu.org
Reporter: kamleshbhalui at gmail dot com
Target Milestone: ---
https://wg21.cmeerw.net/cwg/issue2303
Testcases like below should compile.
$cat test.cc
template struct A;
template <> struct A<> {}
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82803
Kamlesh Kumar changed:
What|Removed |Added
CC||kamleshbhalui at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91766
--- Comment #11 from Kamlesh Kumar ---
is this good?
diff --git a/gcc/c-family/c-opts.c b/gcc/c-family/c-opts.c
index 0fffe60..9fead56 100644
--- a/gcc/c-family/c-opts.c
+++ b/gcc/c-family/c-opts.c
@@ -814,6 +814,10 @@ c_common_post_options (con
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91766
Kamlesh Kumar changed:
What|Removed |Added
CC||kamleshbhalui at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91927
Kamlesh Kumar changed:
What|Removed |Added
CC||kamleshbhalui at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92053
Kamlesh Kumar changed:
What|Removed |Added
CC||kamleshbhalui at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91979
--- Comment #4 from Kamlesh Kumar ---
patch posted at https://gcc.gnu.org/ml/gcc-patches/2019-10/msg01585.html
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91979
Kamlesh Kumar changed:
What|Removed |Added
CC||kamleshbhalui at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83534
--- Comment #5 from Kamlesh Kumar ---
Fixed on trunk
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91055
Kamlesh Kumar changed:
What|Removed |Added
CC||kamleshbhalui at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83534
Kamlesh Kumar changed:
What|Removed |Added
CC||kamleshbhalui at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89924
--- Comment #7 from Kamlesh Kumar ---
After this patch
diff --git a/gcc/ipa-polymorphic-call.c b/gcc/ipa-polymorphic-call.c
index 705af03..b76793f 100644
--- a/gcc/ipa-polymorphic-call.c
+++ b/gcc/ipa-polymorphic-call.c
@@ -1118,6 +1118,10 @@
ip
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89924
--- Comment #6 from Kamlesh Kumar ---
https://gcc.gnu.org/ml/gcc-patches/2019-09/msg01527.html
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53075
Kamlesh Kumar changed:
What|Removed |Added
CC||kamleshbhalui at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91504
--- Comment #3 from Kamlesh Kumar ---
diff --git a/gcc/match.pd b/gcc/match.pd
index 93dcef9..b62ef36 100644
--- a/gcc/match.pd
+++ b/gcc/match.pd
@@ -137,6 +137,11 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
(pointer_plus integer_zerop @1)
(non_
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91504
Kamlesh Kumar changed:
What|Removed |Added
CC||kamleshbhalui at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88877
--- Comment #13 from Kamlesh Kumar ---
(In reply to Alan Modra from comment #12)
> I suspect that the patch in comment #1 will break libcalls in other
> situations, eg.
>
> void f1 (int y)
> {
> extern double d;
> d = y;
> }
Thanks Alan for
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88877
--- Comment #9 from Kamlesh Kumar ---
following testcase produces wrong result
$cat test.c
#include
int main () {
unsigned int x=-1;
double d=x;
printf("%lf",d);
return 0;
}
$./ccppc -mcpu=e6500 -mabi=elfv2 -msoft-float -m64 test.c
$./a.out
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88877
--- Comment #1 from Kamlesh Kumar ---
Following patch fixes the problem but would like to know the experts thought on
the below patch .
static machine_mode
-rs6000_promote_function_mode (const_tree type ATTRIBUTE_UNUSED,
+rs6000_promote_functio
Priority: P3
Component: target
Assignee: unassigned at gcc dot gnu.org
Reporter: kamleshbhalui at gmail dot com
Target Milestone: ---
consider below testcase:
$cat test.c
void foo(){
unsigned int x=-1;
double d=x;
}
$./cc1 test.c -msoft-float -m64
$cat test.s
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67449
Kamlesh Kumar changed:
What|Removed |Added
CC||kamleshbhalui at gmail dot com
22 matches
Mail list logo