diff options
author | Quentin Colombet <qcolombet@apple.com> | 2013-05-24 22:51:52 +0000 |
---|---|---|
committer | Quentin Colombet <qcolombet@apple.com> | 2013-05-24 22:51:52 +0000 |
commit | f482805c285351648cbd2052ccf6b817b726fb0e (patch) | |
tree | 3a2acfbd646f1afb70d4bd1ae8a8e4103baf0f08 /llvm/lib/MC/MCRelocationInfo.cpp | |
parent | 251f49657897b38603d5aaac7f81d61228fe5728 (diff) | |
download | bcm5719-llvm-f482805c285351648cbd2052ccf6b817b726fb0e.tar.gz bcm5719-llvm-f482805c285351648cbd2052ccf6b817b726fb0e.zip |
Follow up of the introduction of MCSymbolizer.
- Ressurect old MCDisassemble API to soften transition.
- Extend MCTargetDesc to set target specific symbolizer.
llvm-svn: 182688
Diffstat (limited to 'llvm/lib/MC/MCRelocationInfo.cpp')
-rw-r--r-- | llvm/lib/MC/MCRelocationInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCRelocationInfo.cpp b/llvm/lib/MC/MCRelocationInfo.cpp index a2a3174555a..53c48deded1 100644 --- a/llvm/lib/MC/MCRelocationInfo.cpp +++ b/llvm/lib/MC/MCRelocationInfo.cpp @@ -34,6 +34,6 @@ MCRelocationInfo::createExprForCAPIVariantKind(const MCExpr *SubExpr, return SubExpr; } -MCRelocationInfo *llvm::createMCRelocationInfo(MCContext &Ctx) { +MCRelocationInfo *llvm::createMCRelocationInfo(StringRef TT, MCContext &Ctx) { return new MCRelocationInfo(Ctx); } |