Use __attribute__((noinline)) only if compiled by gcc.
[oota-llvm.git] / utils / TableGen / DAGISelEmitter.cpp
index eca851c5f699ad18ad581d4bda15ce8a6f3131ee..a28b62eaf34350471faeb4991256ba17410b4225 100644 (file)
@@ -3349,7 +3349,7 @@ void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) {
       }
       CallerCode += ");";
       CalleeCode += ") ";
-#ifndef _MSC_VER
+#ifdef __GNUC__
       // Prevent emission routines from being inlined to reduce selection
       // routines stack frame sizes.
       CalleeCode += "__attribute__((noinline)) ";