[clang] 8e22fff - [clang] Remove trailing whitespace
Nathan Sidwell via cfe-commits
cfe-commits at lists.llvm.org
Sat Feb 24 09:27:39 PST 2024
Author: Nathan Sidwell
Date: 2024-02-24T12:25:08-05:00
New Revision: 8e22fffc85b36784146041499b716cec74285660
URL: https://github.com/llvm/llvm-project/commit/8e22fffc85b36784146041499b716cec74285660
DIFF: https://github.com/llvm/llvm-project/commit/8e22fffc85b36784146041499b716cec74285660.diff
LOG: [clang] Remove trailing whitespace
Fix commit 66f6929fec3ae
Added:
Modified:
clang/docs/HLSL/ExpectedDifferences.rst
Removed:
################################################################################
diff --git a/clang/docs/HLSL/ExpectedDifferences.rst b/clang/docs/HLSL/ExpectedDifferences.rst
index 60001b22dc7920..d1b6010f10f43a 100644
--- a/clang/docs/HLSL/ExpectedDifferences.rst
+++ b/clang/docs/HLSL/ExpectedDifferences.rst
@@ -93,7 +93,7 @@ behavior between Clang and DXC. Some examples include:
fma(X, Y, Z); // DXC: Fails to resolve no known conversion from float to double.
// Clang: Resolves to fma(double,double,double).
#endif
-
+
double D = dot(A, B); // DXC: Resolves to dot(double3, double3), fails DXIL Validation.
// FXC: Expands to compute double dot product with fmul/fadd
// Clang: Resolves to dot(float3, float3), emits conversion warnings.
@@ -102,7 +102,7 @@ behavior between Clang and DXC. Some examples include:
.. note::
- In Clang, a conscious decision was made to exclude the ``dot(vector<double,N>, vector<double,N>)``
+ In Clang, a conscious decision was made to exclude the ``dot(vector<double,N>, vector<double,N>)``
overload and allow overload resolution to resolve the
``vector<float,N>`` overload. This approach provides ``-Wconversion``
diagnostic notifying the user of the conversion rather than silently altering
More information about the cfe-commits
mailing list