[clang] [CIR] Add math and builtin intrinsics support (PR #175233)
Hendrik Hübner via cfe-commits
cfe-commits at lists.llvm.org
Sun Jan 18 04:16:40 PST 2026
================
@@ -0,0 +1,1748 @@
+// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -fclangir -emit-cir %s -o %t.cir
+// RUN: FileCheck --input-file=%t.cir %s
+// RUN: %clang_cc1 -triple aarch64-apple-darwin-macho -fclangir -emit-cir %s -o %t-aarch64.cir
+// RUN: FileCheck --input-file=%t-aarch64.cir %s --check-prefix=AARCH64
+// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -fclangir -emit-llvm -o %t.ll %s
+// RUN: FileCheck --input-file=%t.ll %s --check-prefix=LLVM
----------------
HendrikHuebner wrote:
These are all missing OGCG checks
https://github.com/llvm/llvm-project/pull/175233
More information about the cfe-commits
mailing list