https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76731
Yulia Koval changed:
What|Removed |Added
CC||vaalfreja at gmail dot com
--- Comment
ty: normal
Priority: P3
Component: testsuite
Assignee: unassigned at gcc dot gnu.org
Reporter: vaalfreja at gmail dot com
Target Milestone: ---
Only gcc.sum from the first thread is copied in the $OUT_PATH, if make check is
used with -j $COUNT.
Here is the
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68456
--- Comment #3 from Yulia Koval ---
I agree, that %u usage is not a bug, but it still looks strange..
For gcc --target=i586-elf macro has:
#define __UINT32_TYPE__ long unsigned int
For non-target gcc or gcc --target=i586-unknown-linux it has:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68456
Yulia Koval changed:
What|Removed |Added
Status|RESOLVED|UNCONFIRMED
Resolution|INVALID
Priority: P3
Component: other
Assignee: unassigned at gcc dot gnu.org
Reporter: vaalfreja at gmail dot com
Target Milestone: ---
Reproduce:
bash-4.2$ cat ../i2.c
struct interrupt_frame;
void (*foo1[1])(int a, int b);
void foo2(int c)
{
foo1[c](1,2
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68618
Yulia Koval changed:
What|Removed |Added
Status|WAITING |RESOLVED
Resolution|---
: normal
Priority: P3
Component: target
Assignee: unassigned at gcc dot gnu.org
Reporter: vaalfreja at gmail dot com
Target Milestone: ---
Testcase:
int main(){
float x, y, z;
z = x+y;
return 0;
}
Soft float first extends the result to double
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69226
--- Comment #3 from Yulia Koval ---
We can use this patch and fix both this bug and pr68456 for iamcu:
diff --git a/gcc/config/i386/iamcu.h b/gcc/config/i386/iamcu.h
index f143bf9..5ca5c5e 100644
--- a/gcc/config/i386/iamcu.h
+++ b/gcc/config/i3
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69226
--- Comment #6 from Yulia Koval ---
Works for me.