[Mlir-commits] [mlir] [mlir][OpenMP][NFC] Fix gcc 14 warning (PR #151941)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Mon Aug 4 04:02:32 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-flang-openmp
Author: Tom Eccles (tblah)
<details>
<summary>Changes</summary>
GCC couldn't tell that the enum is checked exhaustively and so was warning about there being no return on this path from the function.
---
Full diff: https://github.com/llvm/llvm-project/pull/151941.diff
1 Files Affected:
- (modified) mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp (+1)
``````````diff
diff --git a/mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp b/mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
index 49e1e55c686a6..762cc88d9fc3d 100644
--- a/mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
+++ b/mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
@@ -3391,6 +3391,7 @@ static llvm::omp::Directive convertCancellationConstructType(
case omp::ClauseCancellationConstructType::Taskgroup:
return llvm::omp::Directive::OMPD_taskgroup;
}
+ llvm_unreachable("Unhandled cancellation construct type");
}
static LogicalResult
``````````
</details>
https://github.com/llvm/llvm-project/pull/151941
More information about the Mlir-commits
mailing list