https://github.com/abhishek-kaushik22 closed
https://github.com/llvm/llvm-project/pull/127331
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -5232,9 +5232,11 @@ RValue CodeGenFunction::EmitCall(const CGFunctionInfo
&CallInfo,
// since otherwise we could be making a conditional call after a check for
// the proper cpu features (and it won't cause code generation issues due
to
// function based code g
@@ -0,0 +1,12 @@
+// RUN: %clang_cc1 %s -triple=x86_64-linux-gnu -S -verify -o -
+
+typedef double __v2df __attribute__((__vector_size__(16)));
+
+__v2df __attribute__((target("sse4.1"))) foo() {
+__v2df v = {0.0, 0.0};
+return __builtin_ia32_roundpd(v, 2);
+}
+
+__v2df __
https://github.com/abhishek-kaushik22 created
https://github.com/llvm/llvm-project/pull/150044
Fixes #149866
>From 480f5521ff5f0767ea295ef61a054f35961be3b0 Mon Sep 17 00:00:00 2001
From: Abhishek Kaushik
Date: Tue, 22 Jul 2025 21:03:17 +0530
Subject: [PATCH] [Clang]Throw frontend error for tar
abhishek-kaushik22 wrote:
@topperc can you please review since you've review similar commits in the past?
https://github.com/llvm/llvm-project/pull/150044
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/li
https://github.com/abhishek-kaushik22 updated
https://github.com/llvm/llvm-project/pull/150044
>From 480f5521ff5f0767ea295ef61a054f35961be3b0 Mon Sep 17 00:00:00 2001
From: Abhishek Kaushik
Date: Tue, 22 Jul 2025 21:03:17 +0530
Subject: [PATCH 1/2] [Clang]Throw frontend error for target feature
@@ -5232,9 +5232,11 @@ RValue CodeGenFunction::EmitCall(const CGFunctionInfo
&CallInfo,
// since otherwise we could be making a conditional call after a check for
// the proper cpu features (and it won't cause code generation issues due
to
// function based code g
abhishek-kaushik22 wrote:
@efriedma-quic can you please review again?
https://github.com/llvm/llvm-project/pull/150044
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/abhishek-kaushik22 updated
https://github.com/llvm/llvm-project/pull/150044
>From 480f5521ff5f0767ea295ef61a054f35961be3b0 Mon Sep 17 00:00:00 2001
From: Abhishek Kaushik
Date: Tue, 22 Jul 2025 21:03:17 +0530
Subject: [PATCH] [Clang]Throw frontend error for target feature mis