mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 02:24:22 +00:00
Fix MSVC build broken by r207580
Seems MSVC wants to be able to codegen inline-definitions of virtual functions even in TUs that don't define the key function - and it's well within its rights to do so. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207581 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -222,10 +222,7 @@ public:
|
||||
/// needed by another object.
|
||||
///
|
||||
/// MCJIT will take ownership of the ObjectFile.
|
||||
virtual void addObjectFile(std::unique_ptr<object::ObjectFile> O) {
|
||||
llvm_unreachable(
|
||||
"ExecutionEngine subclass doesn't implement addObjectFile.");
|
||||
}
|
||||
virtual void addObjectFile(std::unique_ptr<object::ObjectFile> O);
|
||||
|
||||
/// addArchive - Add an Archive to the execution engine.
|
||||
///
|
||||
|
Reference in New Issue
Block a user