efriedma added a comment.

Yes, messed up the warning flag.

Did some brief experiments on trunk; I'd like to see the following two 
testcases as regression tests:

  int a(int z) {
      int x;
      if (z)
        asm goto ("":"=r"(x):::A1,A2);
      return 0;
      A1:
      A2:
      return x; // expected warning: conditional use of uninitialized var
  }
  
  int b() {
      int x = 0;
      asm goto ("":"=r"(x):::A1,A2);
      return 0;
      A1:
      A2:
      return x; // expected warning: use of uninitialized variable
  }


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D116059/new/

https://reviews.llvm.org/D116059

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to