Pretty print labels and case stmts better. This leads to output like this:

void foo() {
abc:
def:
hij:
case 1:
case 1:
  goto abc
baz:
  goto def
}

instead of:

void foo() {
  abc:
    def:
      hij:
        case 1:
          case 1:
            goto abc
  baz:
    goto def
}

llvm-svn: 39468
1 file changed
tree: 9fd021b32772637924554d4800404bf9391a4dc6
  1. clang/
  2. llvm/
  3. stacker/