Commit 5041adcd authored by David Reid's avatar David Reid

Add Digital Mars C++ detection to tests.

parent 9b5b777c
......@@ -2391,6 +2391,9 @@ int main(int argc, char** argv)
#if defined(__TINYC__)
printf("Compiler: TCC\n");
#endif
#if defined(__DMC__)
printf("Compiler: Digital Mars C++\n");
#endif
// Print CPU features.
if (mal_has_sse2()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment