mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-11 13:37:07 +00:00
Fix compilation on Sparc: assert(0) => abort()
llvm-svn: 12289
This commit is contained in:
parent
34ab36e8c8
commit
992e44e3c5
@ -59,11 +59,11 @@ namespace {
|
||||
|
||||
// These should never be called
|
||||
virtual void emitWord(unsigned W) { assert(0); }
|
||||
virtual uint64_t getGlobalValueAddress(GlobalValue *V) { assert(0); }
|
||||
virtual uint64_t getGlobalValueAddress(const std::string &Name) { assert(0); }
|
||||
virtual uint64_t getConstantPoolEntryAddress(unsigned Index) { assert(0); }
|
||||
virtual uint64_t getCurrentPCValue() { assert(0); }
|
||||
virtual uint64_t forceCompilationOf(Function *F) { assert(0); }
|
||||
virtual uint64_t getGlobalValueAddress(GlobalValue *V) { abort(); }
|
||||
virtual uint64_t getGlobalValueAddress(const std::string &Name) { abort(); }
|
||||
virtual uint64_t getConstantPoolEntryAddress(unsigned Index) { abort(); }
|
||||
virtual uint64_t getCurrentPCValue() { abort(); }
|
||||
virtual uint64_t forceCompilationOf(Function *F) { abort(); }
|
||||
|
||||
private:
|
||||
std::ostream& O;
|
||||
|
Loading…
Reference in New Issue
Block a user