diff options
Diffstat (limited to 'llvm/examples/IRTransforms/InitializePasses.cpp')
-rw-r--r-- | llvm/examples/IRTransforms/InitializePasses.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/llvm/examples/IRTransforms/InitializePasses.cpp b/llvm/examples/IRTransforms/InitializePasses.cpp new file mode 100644 index 00000000000..125180715cd --- /dev/null +++ b/llvm/examples/IRTransforms/InitializePasses.cpp @@ -0,0 +1,21 @@ +//===-- InitializePasses.cpp ----------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// +// +// This file implements implements the initialization hook for the example +// transforms. +// +//===----------------------------------------------------------------------===// + +#include "InitializePasses.h" +#include "llvm/PassRegistry.h" + +using namespace llvm; + +void initializeExampleIRTransforms(PassRegistry &Registry) { + initializeSimplifyCFGLegacyPassPass(Registry); +} |