[clang] [compiler-rt] [Coverage] Fix region termination for GNU statement expressions (PR #130976)
Justin Cady via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 14:13:51 PDT 2025
================
@@ -346,6 +346,12 @@ int elsecondnoret(void) {
return 0;
}
+// CHECK-LABEL: _Z18statementexprnoretb
+int statementexprnoret(bool crash) {
+ int rc = ({ if (crash) abort(); 0; }); // CHECK-NOT: Gap,File 0, [[@LINE]]:41 -> [[@LINE+1]]:3 = 0
----------------
justincady wrote:
Thanks, I pushed a commit to fix this.
https://github.com/llvm/llvm-project/pull/130976
More information about the llvm-commits
mailing list