Priority: P3
Component: libstdc++
Assignee: unassigned at gcc dot gnu.org
Reporter: cctsai57 at gmail dot com
Target Milestone: ---
Hi,
I try to simplify the testcase as the following code
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69135
--- Comment #4 from cctsai57 ---
Following
gcc/testsuite/gcc.target/arm/{lceil-vcvt_1.c,lfloor-vcvt_1.c,lround-vcvt_1.c},
suggest:
/* { dg-do compile } */
/* { dg-require-effective-target arm_v8_vfp_ok } */
/* { dg-options "-O2 -march=armv8-a -f
ormal
Priority: P3
Component: target
Assignee: unassigned at gcc dot gnu.org
Reporter: cctsai57 at gmail dot com
Target Milestone: ---
ARMv8 'vcvtp', 'vcvtm' and 'vcvta' do not support conditional execution, but
gcc-5/6
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59768
cctsai57 changed:
What|Removed |Added
CC||cctsai57 at gmail dot com
--- Comment #6
Priority: P3
Component: target
Assignee: unassigned at gcc dot gnu.org
Reporter: cctsai57 at gmail dot com
Target Milestone: ---
/* ICE if "arm-linux-gnueabihf-gcc -O1". */
extern void abort (void);
int __attribute__((noinline))
foo() { return 1
Priority: P3
Component: libstdc++
Assignee: unassigned at gcc dot gnu.org
Reporter: cctsai57 at gmail dot com
Target Milestone: ---
#include
#include
#include
using namespace std;
int main()
{
ifstream f;
f.exceptions(ifstream::failbit);
try {
f.open
Severity: normal
Priority: P3
Component: libstdc++
Assignee: unassigned at gcc dot gnu.org
Reporter: cctsai57 at gmail dot com
Target Milestone: ---
#include
#include
int main()
{
std::basic_ostringstream ostr;
std::ostreambuf_iterator iter
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: cctsai57 at gmail dot com
Target Milestone: ---
#include
struct Base { virtual void foo() {} }; // polymorphic
int main()
{
Base b;
Base *ary[] = { &b, &b, &b};
int iter = 0;
typeid(*ary[iter++])