[clang] Add test for CWG190 "Layout-compatible POD-struct types" (#121668)
[llvm-project.git] / llvm / lib / SandboxIR / Pass.cpp
blobc6ec1aec48b19d7ca45a381dee99b39fac406504
1 //===- Pass.cpp - Passes that operate on Sandbox IR -----------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "llvm/SandboxIR/Pass.h"
10 #include "llvm/SandboxIR/PassManager.h"
11 #include "llvm/Support/Debug.h"
13 using namespace llvm::sandboxir;
15 #ifndef NDEBUG
16 void Pass::dump() const {
17 print(dbgs());
18 dbgs() << "\n";
20 #endif // NDEBUG