mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Replace string GNU Triples with llvm::Triple in create*MCRelocationInfo(). NFC.
Summary: This continues the patch series to eliminate StringRef forms of GNU triples from the internals of LLVM that began in r239036. Reviewers: rafael Reviewed By: rafael Subscribers: rafael, llvm-commits, rengolin Differential Revision: http://reviews.llvm.org/D10307 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239465 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -34,6 +34,7 @@ MCRelocationInfo::createExprForCAPIVariantKind(const MCExpr *SubExpr,
|
||||
return SubExpr;
|
||||
}
|
||||
|
||||
MCRelocationInfo *llvm::createMCRelocationInfo(StringRef TT, MCContext &Ctx) {
|
||||
MCRelocationInfo *llvm::createMCRelocationInfo(const Triple &TT,
|
||||
MCContext &Ctx) {
|
||||
return new MCRelocationInfo(Ctx);
|
||||
}
|
||||
|
Reference in New Issue
Block a user