ExternalFunctions.cpp - fix "unknown pragma 'clang'" MSVC warning. NFCI.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Mon, 6 Mar 2023 11:01:45 +0000 (11:01 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Mon, 6 Mar 2023 11:01:45 +0000 (11:01 +0000)
llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp

index 73b1023..4f8f883 100644 (file)
@@ -346,8 +346,10 @@ static GenericValue lle_X_abort(FunctionType *FT, ArrayRef<GenericValue> Args) {
 
 // Silence warnings about sprintf. (See also
 // https://github.com/llvm/llvm-project/issues/58086)
+#if defined(__clang__)
 #pragma clang diagnostic push
 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
+#endif
 // int sprintf(char *, const char *, ...) - a very rough implementation to make
 // output useful.
 static GenericValue lle_X_sprintf(FunctionType *FT,
@@ -429,7 +431,9 @@ static GenericValue lle_X_sprintf(FunctionType *FT,
   }
   return GV;
 }
+#if defined(__clang__)
 #pragma clang diagnostic pop
+#endif
 
 // int printf(const char *, ...) - a very rough implementation to make output
 // useful.