view gcc/testsuite/g++.dg/opt/longbranch1.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// PR c++/5964
// This testcase failed to link on sparc -m64 -O0, because instruction
// lengths were incorrectly computed
// { dg-do link }
// { dg-options "-O0" }

#define makecode for (int i = 1; i < 1000; ++i) i *= 3
#define muchcode \
        makecode; makecode; makecode; makecode; makecode; makecode; \
        makecode; makecode; makecode; makecode; makecode; makecode; \
        makecode; makecode; makecode; makecode; makecode; makecode; \
        makecode; makecode; makecode; makecode; makecode; makecode

#define verymuchcode \
        muchcode; muchcode; muchcode; muchcode; muchcode; muchcode; \
        muchcode; muchcode; muchcode; muchcode; muchcode; muchcode; \
        muchcode; muchcode; muchcode; muchcode; muchcode; muchcode; \
        muchcode; muchcode; muchcode; muchcode; muchcode; muchcode; \
        muchcode; muchcode; muchcode; muchcode; muchcode; muchcode; \
        muchcode; muchcode; muchcode; muchcode; muchcode; muchcode; \
        muchcode; muchcode; muchcode; muchcode; muchcode; muchcode; \
        muchcode; muchcode; muchcode; muchcode; muchcode; muchcode; \
        muchcode; muchcode; muchcode; muchcode; muchcode; muchcode; \
        muchcode; muchcode; muchcode; muchcode; muchcode; muchcode; \
        muchcode; muchcode; muchcode; muchcode; muchcode; muchcode; \
        muchcode; muchcode; muchcode; muchcode; muchcode; muchcode; \
        muchcode; muchcode; muchcode; muchcode; muchcode; muchcode

int
main (int argc, char **argv)
{
loop:
  verymuchcode;
  delete[] argv;
  goto loop;
}