diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-08-01 14:57:05 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-08-01 14:57:05 +0000 |
commit | 77f1f8f170fd99f2fe9597f3bd077d246c76566e (patch) | |
tree | f81725c264e0e3b25a5fb0919487ab7fc5010f6d /llvm/include/llvm-c | |
parent | 579c02c9a52c6903ae7c830b0dd940566940ff56 (diff) | |
download | bcm5719-llvm-77f1f8f170fd99f2fe9597f3bd077d246c76566e.tar.gz bcm5719-llvm-77f1f8f170fd99f2fe9597f3bd077d246c76566e.zip |
Remove lto_codegen_set_attr.
It was never exported, so no functionality change.
llvm-svn: 214519
Diffstat (limited to 'llvm/include/llvm-c')
-rw-r--r-- | llvm/include/llvm-c/lto.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/llvm/include/llvm-c/lto.h b/llvm/include/llvm-c/lto.h index 51079896d7f..c525710ae1a 100644 --- a/llvm/include/llvm-c/lto.h +++ b/llvm/include/llvm-c/lto.h @@ -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 @@ -375,14 +375,6 @@ lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model); extern void 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 |