[clang] __sys builtin support (PR #145079)
Eli Friedman via cfe-commits
cfe-commits at lists.llvm.org
Mon Jun 30 15:53:17 PDT 2025
================
@@ -0,0 +1,68 @@
+// REQUIRES: aarch64-registered-target
+
+// RUN: %clang_cc1 -triple arm64-windows -fms-compatibility -S \
+// RUN: -o - %s | FileCheck %s -check-prefix CHECK-ASM
+
+// RUN: %clang_cc1 -triple arm64-darwin -fms-compatibility -S \
+// RUN: -o - %s | FileCheck %s -check-prefix CHECK-ASM
+
+// RUN: %clang_cc1 -triple arm64-windows -fms-compatibility -emit-llvm \
+// RUN: -o - %s | FileCheck %s -check-prefix CHECK-IR
+
+// RUN: %clang_cc1 -triple arm64-darwin -fms-compatibility -emit-llvm \
+// RUN: -o - %s | FileCheck %s -check-prefix CHECK-IR
----------------
efriedma-quic wrote:
I don't think we need all four of these runs... maybe we can shave off a couple?
https://github.com/llvm/llvm-project/pull/145079
More information about the cfe-commits
mailing list