From b5050f3cd0dac9d24586a222a751ad3e1307ea9f Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 17 Aug 2010 16:02:32 +0000 Subject: [PATCH] apparently msvc defines _STDCALL_SUPPORTED, so we should too. Patch by Per Linden! llvm-svn: 111236 --- clang/lib/Basic/Targets.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/clang/lib/Basic/Targets.cpp b/clang/lib/Basic/Targets.cpp index 1e8ed79a0a45..77319e1c4d14 100644 --- a/clang/lib/Basic/Targets.cpp +++ b/clang/lib/Basic/Targets.cpp @@ -1350,6 +1350,7 @@ public: // We lost the original triple, so we use the default. Builder.defineMacro("_M_IX86", "600"); Builder.defineMacro("_INTEGRAL_MAX_BITS", "64"); + Builder.defineMacro("_STDCALL_SUPPORTED"); } }; } // end anonymous namespace