mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Remove lto_codegen_set_attr.
It was never exported, so no functionality change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214519 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4175e2f597
commit
09237b8968
@ -40,7 +40,7 @@ typedef bool lto_bool_t;
|
|||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define LTO_API_VERSION 11
|
#define LTO_API_VERSION 10
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \since prior to LTO_API_VERSION=3
|
* \since prior to LTO_API_VERSION=3
|
||||||
@ -375,14 +375,6 @@ lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model);
|
|||||||
extern void
|
extern void
|
||||||
lto_codegen_set_cpu(lto_code_gen_t cg, const char *cpu);
|
lto_codegen_set_cpu(lto_code_gen_t cg, const char *cpu);
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets attributes for the cpu to generate code for.
|
|
||||||
*
|
|
||||||
* \since LTO_API_VERSION=11
|
|
||||||
*/
|
|
||||||
extern void
|
|
||||||
lto_codegen_set_attr(lto_code_gen_t cg, const char *attr);
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the location of the assembler tool to run. If not set, libLTO
|
* Sets the location of the assembler tool to run. If not set, libLTO
|
||||||
|
@ -222,10 +222,6 @@ void lto_codegen_set_cpu(lto_code_gen_t cg, const char *cpu) {
|
|||||||
return unwrap(cg)->setCpu(cpu);
|
return unwrap(cg)->setCpu(cpu);
|
||||||
}
|
}
|
||||||
|
|
||||||
void lto_codegen_set_attr(lto_code_gen_t cg, const char *attr) {
|
|
||||||
return unwrap(cg)->setAttr(attr);
|
|
||||||
}
|
|
||||||
|
|
||||||
void lto_codegen_set_assembler_path(lto_code_gen_t cg, const char *path) {
|
void lto_codegen_set_assembler_path(lto_code_gen_t cg, const char *path) {
|
||||||
// In here only for backwards compatibility. We use MC now.
|
// In here only for backwards compatibility. We use MC now.
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user