[Bug target/76731] [AVX512] _mm512_i32gather_epi32 and other scatter/gather routines have incorrect signature

2017-01-17 Thread vaalfreja at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76731 Yulia Koval changed: What|Removed |Added CC||vaalfreja at gmail dot com --- Comment

[Bug testsuite/68457] New: make check RUNTESTFLAGS="--outdir=$OUT_PATH" does not work with -j

2015-11-20 Thread vaalfreja at gmail dot com
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

[Bug target/68456] UINT32_TYPE is long unsigned for 32bit targets

2015-11-20 Thread vaalfreja at gmail dot com
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:

[Bug target/68456] UINT32_TYPE has different type for i586-elf and for i586-unknown-linux

2015-11-24 Thread vaalfreja at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68456 Yulia Koval changed: What|Removed |Added Status|RESOLVED|UNCONFIRMED Resolution|INVALID

[Bug other/68618] New: interrupt fails on ICE in some call cases with miamcu with -O2/3

2015-11-30 Thread vaalfreja at gmail dot com
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

[Bug target/68618] interrupt fails on ICE in some call cases with miamcu with -O2/3

2015-11-30 Thread vaalfreja at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68618 Yulia Koval changed: What|Removed |Added Status|WAITING |RESOLVED Resolution|---

[Bug target/69225] New: gcc uses double precision instead of single float with -m32 -std=c99 -msoft-float

2016-01-11 Thread vaalfreja at gmail dot com
: 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

[Bug target/69226] Wrong __SIZE_TYPE__/__PTRDIFF_TYPE__/__WCHAR_TYPE__ for IA MCU

2016-01-11 Thread vaalfreja at gmail dot com
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

[Bug target/69226] Wrong __SIZE_TYPE__/__PTRDIFF_TYPE__/__WCHAR_TYPE__ for IA MCU

2016-01-12 Thread vaalfreja at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69226 --- Comment #6 from Yulia Koval --- Works for me.