diff options
author | Frits van Bommel <fvbommel@gmail.com> | 2011-04-03 19:46:28 +0000 |
---|---|---|
committer | Frits van Bommel <fvbommel@gmail.com> | 2011-04-03 19:46:28 +0000 |
commit | c12d4c93f94e271d32e60fae1d521c4fca39ae1e (patch) | |
tree | e745c1784608e7b073bf45f293f2ffe5d4bccd44 /include/llvm/Support/ConstantFolder.h | |
parent | f63ea6fefced0a883f716937d399b26d51c491cc (diff) |
Remove the LLVMContext& arguments from *Folder constructors, as they don't seem to be used anywhere.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128793 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/ConstantFolder.h')
-rw-r--r-- | include/llvm/Support/ConstantFolder.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/llvm/Support/ConstantFolder.h b/include/llvm/Support/ConstantFolder.h index bd3765d592..d0eaa3e487 100644 --- a/include/llvm/Support/ConstantFolder.h +++ b/include/llvm/Support/ConstantFolder.h @@ -22,12 +22,10 @@ namespace llvm { -class LLVMContext; - /// ConstantFolder - Create constants with minimum, target independent, folding. class ConstantFolder { public: - explicit ConstantFolder(LLVMContext &) {} + explicit ConstantFolder() {} //===--------------------------------------------------------------------===// // Binary Operators |