From 86ec7bae4f2b1054b36799a4c69c26100571cb8e Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Fri, 7 Aug 2009 20:50:09 +0000 Subject: MSVC warning fixes; patch by Stein Roger! llvm-svn: 78405 --- llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp') diff --git a/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp b/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp index 79948704ef1..68097fd1219 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp +++ b/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp @@ -291,6 +291,12 @@ GenericValue Interpreter::callExternalFunction(Function *F, //===----------------------------------------------------------------------===// // Functions "exported" to the running application... // + +// Visual Studio warns about returning GenericValue in extern "C" linkage +#ifdef _MSC_VER + #pragma warning(disable : 4190) +#endif + extern "C" { // Don't add C++ manglings to llvm mangling :) // void atexit(Function*) @@ -539,6 +545,11 @@ GenericValue lle_X_fprintf(const FunctionType *FT, } // End extern "C" +// Done with externals; turn the warning back on +#ifdef _MSC_VER + #pragma warning(default: 4190) +#endif + void Interpreter::initializeExternalFunctions() { sys::ScopedLock Writer(*FunctionsLock); -- cgit v1.2.3