diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2016-12-08 00:27:37 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2016-12-08 00:27:37 +0000 |
commit | cfef0cd31b5b1396048a231d6c8387e8c785474c (patch) | |
tree | 74724ab2f42710e230c10af6d37df7f5caa6da88 | |
parent | e04e5b954a1cfb3bb6491c9071a00105dac13127 (diff) | |
download | bcm5719-llvm-cfef0cd31b5b1396048a231d6c8387e8c785474c.tar.gz bcm5719-llvm-cfef0cd31b5b1396048a231d6c8387e8c785474c.zip |
LTO: Remove the unused Config::Features field.
We are currently initializing Features via MAttrs.
llvm-svn: 289007
-rw-r--r-- | llvm/include/llvm/LTO/Config.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/include/llvm/LTO/Config.h b/llvm/include/llvm/LTO/Config.h index 239ea878e98..72bdf68d0b4 100644 --- a/llvm/include/llvm/LTO/Config.h +++ b/llvm/include/llvm/LTO/Config.h @@ -34,7 +34,6 @@ namespace lto { /// structure and passing it to the lto::LTO constructor. struct Config { std::string CPU; - std::string Features; TargetOptions Options; std::vector<std::string> MAttrs; Reloc::Model RelocModel = Reloc::PIC_; |