From 5041adcdf2f14b3ef41587e33f77278a2b973d19 Mon Sep 17 00:00:00 2001 From: David Reid Date: Mon, 30 Apr 2018 18:17:03 +1000 Subject: [PATCH] Add Digital Mars C++ detection to tests. --- tests/mal_test_0.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/mal_test_0.c b/tests/mal_test_0.c index 14df6981..b23a9fa7 100644 --- a/tests/mal_test_0.c +++ b/tests/mal_test_0.c @@ -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()) {