forked from OSchip/llvm-project
Fix (unused) RegisterAsmBackend template, clang++ isn't happy about this.
llvm-svn: 98226
This commit is contained in:
parent
84b5ddc872
commit
bd01967261
|
@ -588,8 +588,9 @@ namespace llvm {
|
|||
}
|
||||
|
||||
private:
|
||||
static TargetAsmBackend *Allocator(const Target &T, MCAssembler &Backend) {
|
||||
return new AsmBackendImpl(T, Backend);
|
||||
static TargetAsmBackend *Allocator(const Target &T,
|
||||
const std::string &Triple) {
|
||||
return new AsmBackendImpl(T, Triple);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue