[jit] Enable tests for the Vector<T> intrinsics. (#4157)
authorZoltan Varga <vargaz@gmail.com>
Sat, 17 Dec 2016 12:11:21 +0000 (07:11 -0500)
committerGitHub <noreply@github.com>
Sat, 17 Dec 2016 12:11:21 +0000 (07:11 -0500)
mono/mini/Makefile.am.in
mono/mini/basic-vectors.cs

index eab2cd3db4918d0cde243abe0f55d69b0980897d..13dfbf4500fb4f04b8c781b1972c4d25ade8ab63 100755 (executable)
@@ -622,7 +622,7 @@ basic-simd.exe: basic-simd.cs TestDriver.dll
        $(MCS) -out:$@ $(CSFLAGS) $< -r:TestDriver.dll -r:$(CLASS)/Mono.Simd.dll
 
 basic-vectors.exe: basic-vectors.cs TestDriver.dll
-       $(MCS) -out:$@ $(CSFLAGS) $< -r:TestDriver.dll -r:$(CLASS)/System.Numerics.dll
+       $(MCS) -out:$@ $(CSFLAGS) $< -r:TestDriver.dll -r:$(CLASS)/System.Numerics.dll -r:$(CLASS)/System.Numerics.Vectors.dll
 
 nacl.exe: nacl.cs TestDriver.dll
        $(MCS) -out:$@ $(CSFLAGS) $< -r:TestDriver.dll -r:$(CLASS)/Mono.Simd.dll
index 3b8c50c181a1eaf52d0137e4bed3ac288f1e8a9f..3e13c2a327fd47d3e15889194771fcc6553ddc0a 100644 (file)
@@ -717,7 +717,6 @@ public class VectorTests {
                return 0;
        }
 
-#if FALSE
        //
        // Vector<T>
        //
@@ -1414,7 +1413,4 @@ public class VectorTests {
                }
                return 0;
        }
-
-#endif
-
 }