summaryrefslogtreecommitdiffstats
path: root/polly/lib/Transform/CodePreparation.cpp
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2015-02-15 23:40:18 +0000
committerDavid Blaikie <dblaikie@gmail.com>2015-02-15 23:40:18 +0000
commitc4d7bc3fccf6cb9f20e29794245a63e9965a4596 (patch)
tree34c35549119ea650e015386e7d50585837b95a0c /polly/lib/Transform/CodePreparation.cpp
parentda9d3879294e1f12014d6f9394830584e4091ea7 (diff)
downloadbcm5719-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.cpp4
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;
OpenPOWER on IntegriCloud