diff options
| author | David Blaikie <dblaikie@gmail.com> | 2015-02-15 23:40:18 +0000 |
|---|---|---|
| committer | David Blaikie <dblaikie@gmail.com> | 2015-02-15 23:40:18 +0000 |
| commit | c4d7bc3fccf6cb9f20e29794245a63e9965a4596 (patch) | |
| tree | 34c35549119ea650e015386e7d50585837b95a0c /polly/lib/Transform/CodePreparation.cpp | |
| parent | da9d3879294e1f12014d6f9394830584e4091ea7 (diff) | |
| download | bcm5719-llvm-c4d7bc3fccf6cb9f20e29794245a63e9965a4596.tar.gz bcm5719-llvm-c4d7bc3fccf6cb9f20e29794245a63e9965a4596.zip | |
Update Polly for the removal of LLVM_DELETED_FUNCTION now that '= delete' works on all supported compilers (MSVC2012 compat has been dropped)
llvm-svn: 229344
Diffstat (limited to 'polly/lib/Transform/CodePreparation.cpp')
| -rw-r--r-- | polly/lib/Transform/CodePreparation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/lib/Transform/CodePreparation.cpp b/polly/lib/Transform/CodePreparation.cpp index 5aba77e7662..a7701714e88 100644 --- a/polly/lib/Transform/CodePreparation.cpp +++ b/polly/lib/Transform/CodePreparation.cpp @@ -65,9 +65,9 @@ static void DemotePHI( /// @brief Prepare the IR for the scop detection. /// class CodePreparation : public FunctionPass { - CodePreparation(const CodePreparation &) LLVM_DELETED_FUNCTION; + CodePreparation(const CodePreparation &) = delete; const CodePreparation & - operator=(const CodePreparation &) LLVM_DELETED_FUNCTION; + operator=(const CodePreparation &) = delete; LoopInfo *LI; ScalarEvolution *SE; |

