~pipelight/pipelight/llvm-3.4

« back to all changes in this revision

Viewing changes to clang-tools-extra/clang-modernize/LoopConvert/LoopActions.cpp

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-12-03 10:25:59 UTC
  • mfrom: (0.10.1) (0.9.1) (0.8.1) (0.7.1) (0.6.1) (0.2.2)
  • Revision ID: package-import@ubuntu.com-20131203102559-chcuo5tqergytnct
Tags: 1:3.4~+rc2-1
* New testing upstream release
* 0047-version-name.diff ocamldoc.diff removed (applied upstream)
* r600 is now compiled by default (remove the configure arg)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1113
1113
          DerefByConstRef = InitPointeeType.isConstQualified();
1114
1114
      }
1115
1115
    } else {
1116
 
      // If the de-referece operator return by value then test for the canonical
1117
 
      // const qualification of the init variable type.
 
1116
      // If the dereference operator returns by value then test for the
 
1117
      // canonical const qualification of the init variable type.
1118
1118
      DerefByConstRef = CanonicalInitVarType.isConstQualified();
1119
1119
    }
1120
1120
  } else if (FixerKind == LFK_PseudoArray) {