mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
Change LTOModule`s getTargetTriple and setTargetTriple to use c++ types.
llvm-svn: 212343
This commit is contained in:
parent
f67aea8080
commit
0f593fe8ae
@ -101,13 +101,13 @@ public:
|
||||
StringRef path = "");
|
||||
|
||||
/// Return the Module's target triple.
|
||||
const char *getTargetTriple() {
|
||||
return _module->getTargetTriple().c_str();
|
||||
const std::string &getTargetTriple() {
|
||||
return _module->getTargetTriple();
|
||||
}
|
||||
|
||||
/// Set the Module's target triple.
|
||||
void setTargetTriple(const char *triple) {
|
||||
_module->setTargetTriple(triple);
|
||||
void setTargetTriple(StringRef Triple) {
|
||||
_module->setTargetTriple(Triple);
|
||||
}
|
||||
|
||||
/// Get the number of symbols
|
||||
|
@ -149,7 +149,7 @@ lto_module_t lto_module_create_from_memory_with_path(const void* mem,
|
||||
void lto_module_dispose(lto_module_t mod) { delete unwrap(mod); }
|
||||
|
||||
const char* lto_module_get_target_triple(lto_module_t mod) {
|
||||
return unwrap(mod)->getTargetTriple();
|
||||
return unwrap(mod)->getTargetTriple().c_str();
|
||||
}
|
||||
|
||||
void lto_module_set_target_triple(lto_module_t mod, const char *triple) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user