diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-10-17 20:08:47 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-10-17 20:08:47 +0000 |
commit | c53d225e9d93e78dd5ae9f8ee7b6e5fc0bec3e56 (patch) | |
tree | 5b092d0ad62c14f3f2aaf1144a193c53c11883ed | |
parent | 95b99cae40c20a3fa2da3ee0e58e29d4e21701ed (diff) | |
download | external_llvm-c53d225e9d93e78dd5ae9f8ee7b6e5fc0bec3e56.zip external_llvm-c53d225e9d93e78dd5ae9f8ee7b6e5fc0bec3e56.tar.gz external_llvm-c53d225e9d93e78dd5ae9f8ee7b6e5fc0bec3e56.tar.bz2 |
This variable is never used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84351 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | utils/TableGen/LLVMCConfigurationEmitter.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/TableGen/LLVMCConfigurationEmitter.h b/utils/TableGen/LLVMCConfigurationEmitter.h index 347f6f1..b37b83f 100644 --- a/utils/TableGen/LLVMCConfigurationEmitter.h +++ b/utils/TableGen/LLVMCConfigurationEmitter.h @@ -21,9 +21,8 @@ namespace llvm { /// LLVMCConfigurationEmitter - TableGen backend that generates /// configuration code for LLVMC. class LLVMCConfigurationEmitter : public TableGenBackend { - RecordKeeper &Records; public: - explicit LLVMCConfigurationEmitter(RecordKeeper &R) : Records(R) {} + explicit LLVMCConfigurationEmitter(RecordKeeper&) {} // run - Output the asmwriter, returning true on failure. void run(raw_ostream &o); |