~epr/arb/trunk2

« back to all changes in this revision

Viewing changes to NTREE/ad_spec.cxx

  • Committer: westram
  • Date: 2018-07-10 14:48:45 UTC
  • Revision ID: svn-v4:129cd134-2152-0410-ab65-f3f895bafe68:trunk:17178

  * reintegrates 'gcc' into 'trunk'
    - complete arb port to gcc 8.1 
    - fixes NDEBUG-related issues (not handled by [16986])
  * adds: log:branches/gcc@17164:17177

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
        typedef bool letterOccurs[MAXLETTER];
43
43
 
44
44
        letterOccurs *occurs = ARB_alloc<letterOccurs>(alignment_len);
45
 
        for (int i = 0; i<MAXLETTER; ++i) { // LOOP_VECTORIZED[!<6.0]
46
 
            for (int p = 0; p<alignment_len; ++p) {
 
45
        for (int i = 0; i<MAXLETTER; ++i) { // LOOP_VECTORIZED[!<6.0,!8.1]
 
46
            for (int p = 0; p<alignment_len; ++p) { // LOOP_VECTORIZED[!<8.1,!>8.1]
47
47
                occurs[p][i] = false;
48
48
            }
49
49
        }