Use braces in multi-statement DEBUG() code [NFC]
authorTobias Grosser <tobias@grosser.es>
Wed, 22 Oct 2014 23:00:03 +0000 (23:00 +0000)
committerTobias Grosser <tobias@grosser.es>
Wed, 22 Oct 2014 23:00:03 +0000 (23:00 +0000)
commitf084edd0b43fcb26a5a2e49c77a580497f780056
treef8016d9a268bf4bdb51cebdcca0c3e37f84bca3b
parentac7dc6e70157313c455fd49f317e868833fbfdc7
Use braces in multi-statement DEBUG() code [NFC]

By adding braces into the DEBUG statement we can make clang-format format code
such as:

  DEBUG(stmt1(); stmt2())

as multi-line code:

  DEBUG({
    stmt1();
    stmt2();
  });

This makes control-flow in debug statements easier to read.

llvm-svn: 220441
polly/lib/Analysis/Dependences.cpp
polly/lib/Analysis/ScopDetection.cpp
polly/lib/CodeGen/CodeGeneration.cpp
polly/lib/Support/SCEVValidator.cpp