Skip to content

Commit

Permalink
Fix build breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotas committed Jan 26, 2021
1 parent f68e1bf commit 719ca3c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,6 @@ public static double Pow(double x, double y)
return RuntimeImports.pow(x, y);
}

[Intrinsic]
public static double ScaleB(double x, int n)
{
return RuntimeImports.scalbn(x, n);
}

[Intrinsic]
public static double Sin(double a)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,6 @@ public static float Pow(float x, float y)
return RuntimeImports.powf(x, y);
}

[Intrinsic]
public static float ScaleB(float x, int n)
{
return RuntimeImports.scalbnf(x, n);
}

[Intrinsic]
public static float Sin(float x)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -923,16 +923,6 @@ internal static float fabsf(float x)
[RuntimeImport(RuntimeLibrary, "powf")]
internal static extern float powf(float x, float y);

[Intrinsic]
[MethodImplAttribute(MethodImplOptions.InternalCall)]
[RuntimeImport(RuntimeLibrary, "scalbn")]
internal static extern double scalbn(double x, int n);

[Intrinsic]
[MethodImplAttribute(MethodImplOptions.InternalCall)]
[RuntimeImport(RuntimeLibrary, "scalbnf")]
internal static extern float scalbnf(float x, int n);

[Intrinsic]
[MethodImplAttribute(MethodImplOptions.InternalCall)]
[RuntimeImport(RuntimeLibrary, "sin")]
Expand Down

0 comments on commit 719ca3c

Please sign in to comment.