Skip to content

Commit

Permalink
Tests for _popcnt are compiler-specific
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuclaw committed Jan 17, 2016
1 parent d5592bd commit 4849908
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions test/runnable/builtin.d
Expand Up @@ -3,10 +3,13 @@ import std.stdio;
import std.math;
import core.bitop;

version (X86_64)
version = AnyX86;
else version (X86)
version = AnyX86;
version (DigitalMars)
{
version (X86_64)
version = AnyX86;
else version (X86)
version = AnyX86;
}

/*******************************************/

Expand Down

0 comments on commit 4849908

Please sign in to comment.