Browse Source

Fix build.

pull/2153/head
Siegfried Pammer 5 years ago
parent
commit
1b47acfde7
  1. 2
      ICSharpCode.Decompiler.Tests/TestCases/ILPretty/Issue1922.cs

2
ICSharpCode.Decompiler.Tests/TestCases/ILPretty/Issue1922.cs

@ -4,7 +4,7 @@
{ {
public static long fnWorks(int x, int y) public static long fnWorks(int x, int y)
{ {
return (((long)y & 0xFFFFFFL) << 24) | ((long)x & 0xFFFFFFL); return (long)(((ulong)y & 0xFFFFFFuL) << 24) | ((long)x & 0xFFFFFFL);
} }
public static long fnFails(int x, int y) public static long fnFails(int x, int y)

Loading…
Cancel
Save