[PATCH] D132597: remove scalar types lld and ld from test since hlsl won't support them
Joshua Batista via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Aug 24 13:03:23 PDT 2022
bob80905 created this revision.
Herald added a subscriber: Anastasia.
Herald added a project: All.
bob80905 requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D132597
Files:
clang/lib/Headers/hlsl/hlsl_intrinsics.h
clang/test/CodeGenHLSL/builtins/acos.hlsl
Index: clang/test/CodeGenHLSL/builtins/acos.hlsl
===================================================================
--- clang/test/CodeGenHLSL/builtins/acos.hlsl
+++ clang/test/CodeGenHLSL/builtins/acos.hlsl
@@ -17,18 +17,3 @@
// CHECK: define noundef float @"?acos_f@@YAMM at Z"(
// CHECK: call noundef float @acosf(float noundef %0)
-
-long double acos_ld(long double x)
-{
- return acos(x);
-}
-
-// CHECK: define noundef double @"?acos_ld@@YAOO at Z"(
-// CHECK: call noundef double @acosl(double noundef %0)
-
-/*
-long long double acos_lld(long long double x)
-{
- return acos(x);
-}
-*/
\ No newline at end of file
Index: clang/lib/Headers/hlsl/hlsl_intrinsics.h
===================================================================
--- clang/lib/Headers/hlsl/hlsl_intrinsics.h
+++ clang/lib/Headers/hlsl/hlsl_intrinsics.h
@@ -15,9 +15,6 @@
__attribute__((clang_builtin_alias(__builtin_acos))) double acos(double In);
__attribute__((clang_builtin_alias(__builtin_acosf))) float acos(float In);
-__attribute__((clang_builtin_alias(__builtin_acosl))) long double acos(long double In);
-//__attribute__((clang_builtin_alias(__builtin_acosf128))) __float128 acos(__float128 In);
-
#endif //_HLSL_HLSL_INTRINSICS_H_
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D132597.455337.patch
Type: text/x-patch
Size: 1226 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220824/79f2f7e8/attachment-0001.bin>
More information about the cfe-commits
mailing list