diff options
author | Jan Kotas <jkotas@microsoft.com> | 2018-07-31 15:37:26 -0700 |
---|---|---|
committer | Anirudh Agnihotry <anirudhagnihotry098@gmail.com> | 2018-07-31 20:53:14 -0700 |
commit | 3a880c978489b3875a7a6b4d910a60fb977dc84c (patch) | |
tree | f2c92566cdef9463fb11e2462475a15d7ab537f5 | |
parent | c62976e0aaef8c8fb456b16f21b9fe3bd73a40a5 (diff) | |
download | coreclr-3a880c978489b3875a7a6b4d910a60fb977dc84c.tar.gz coreclr-3a880c978489b3875a7a6b4d910a60fb977dc84c.tar.bz2 coreclr-3a880c978489b3875a7a6b4d910a60fb977dc84c.zip |
Fix build break
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
-rw-r--r-- | src/System.Private.CoreLib/shared/System/Runtime/Intrinsics/X86/Fma.PlatformNotSupported.cs | 1 | ||||
-rw-r--r-- | src/System.Private.CoreLib/shared/System/Runtime/Intrinsics/X86/Fma.cs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Runtime/Intrinsics/X86/Fma.PlatformNotSupported.cs b/src/System.Private.CoreLib/shared/System/Runtime/Intrinsics/X86/Fma.PlatformNotSupported.cs index b4fd77f613..91becab4d5 100644 --- a/src/System.Private.CoreLib/shared/System/Runtime/Intrinsics/X86/Fma.PlatformNotSupported.cs +++ b/src/System.Private.CoreLib/shared/System/Runtime/Intrinsics/X86/Fma.PlatformNotSupported.cs @@ -10,6 +10,7 @@ namespace System.Runtime.Intrinsics.X86 /// <summary> /// This class provides access to Intel FMA hardware instructions via intrinsics /// </summary> + [CLSCompliant(false)] public abstract class Fma : Avx { internal Fma() { } diff --git a/src/System.Private.CoreLib/shared/System/Runtime/Intrinsics/X86/Fma.cs b/src/System.Private.CoreLib/shared/System/Runtime/Intrinsics/X86/Fma.cs index 160e95eb64..88cb8d0cbe 100644 --- a/src/System.Private.CoreLib/shared/System/Runtime/Intrinsics/X86/Fma.cs +++ b/src/System.Private.CoreLib/shared/System/Runtime/Intrinsics/X86/Fma.cs @@ -10,6 +10,7 @@ namespace System.Runtime.Intrinsics.X86 /// <summary> /// This class provides access to Intel FMA hardware instructions via intrinsics /// </summary> + [CLSCompliant(false)] public abstract class Fma : Avx { internal Fma() { } |