diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-12 22:10:57 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-12 22:10:57 +0000 |
commit | 1432ef864e363e91890bb1f9678f499f866dda0f (patch) | |
tree | d2f1697774254d49628dddcdc47ac334a08c731d /llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp | |
parent | cb2752bb5d0d75c7e1799f1cde17546986ba4fbb (diff) | |
download | bcm5719-llvm-1432ef864e363e91890bb1f9678f499f866dda0f.tar.gz bcm5719-llvm-1432ef864e363e91890bb1f9678f499f866dda0f.zip |
This void is implicit in C++.
llvm-svn: 78848
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp b/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp index 68097fd1219..37f6ef07f6d 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp +++ b/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp @@ -55,7 +55,7 @@ static ManagedStatic<std::map<const Function *, ExFunc> > ExportedFunctions; static std::map<std::string, ExFunc> FuncNames; #ifdef USE_LIBFFI -typedef void (*RawFunc)(void); +typedef void (*RawFunc)(); static ManagedStatic<std::map<const Function *, RawFunc> > RawFunctions; #endif |