[clang] b907c14 - [CIR][NFC] Rename SignBitOp to CIR_SignBitOp (#195477)
via cfe-commits
cfe-commits at lists.llvm.org
Mon May 4 22:01:26 PDT 2026
Author: Henrich Lauko
Date: 2026-05-05T07:01:22+02:00
New Revision: b907c1491c0a9108cbc4f9e85bfdcf6dee120d06
URL: https://github.com/llvm/llvm-project/commit/b907c1491c0a9108cbc4f9e85bfdcf6dee120d06
DIFF: https://github.com/llvm/llvm-project/commit/b907c1491c0a9108cbc4f9e85bfdcf6dee120d06.diff
LOG: [CIR][NFC] Rename SignBitOp to CIR_SignBitOp (#195477)
Align with the CIR_ prefix naming convention used by other op
definitions in CIROps.td.
Added:
Modified:
clang/include/clang/CIR/Dialect/IR/CIROps.td
Removed:
################################################################################
diff --git a/clang/include/clang/CIR/Dialect/IR/CIROps.td b/clang/include/clang/CIR/Dialect/IR/CIROps.td
index 8ead23c83cb50..db3ac6340eccb 100644
--- a/clang/include/clang/CIR/Dialect/IR/CIROps.td
+++ b/clang/include/clang/CIR/Dialect/IR/CIROps.td
@@ -487,7 +487,7 @@ def CIR_ConstantOp : CIR_Op<"const", [
// SignBitOp
//===----------------------------------------------------------------------===//
-def SignBitOp : CIR_Op<"signbit", [Pure]> {
+def CIR_SignBitOp : CIR_Op<"signbit", [Pure]> {
let summary = "Checks the sign of a floating-point number";
let description = [{
It returns whether the sign bit (i.e. the highest bit) of the input operand
More information about the cfe-commits
mailing list