Commit 7b339e4a authored by Bill Wendling's avatar Bill Wendling
Browse files

Merge r128168 to unbreak test.

llvm-svn: 128365
parent 2ff2fd82
Loading
Loading
Loading
Loading
+10 −4
Original line number Diff line number Diff line
@@ -2,11 +2,17 @@

// PR9463
double *end;
void f() {
void f(bool b1, bool b2) {
  {
    do {
      int end = 0;
      if (b2) {
        do {
          goto end;
        } while (b2);
      }
      end = 1;
    } while (b1);
  }

 end: