diff options
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/SandboxVectorizer/InstrMaps.cpp')
| -rw-r--r-- | llvm/lib/Transforms/Vectorize/SandboxVectorizer/InstrMaps.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Vectorize/SandboxVectorizer/InstrMaps.cpp b/llvm/lib/Transforms/Vectorize/SandboxVectorizer/InstrMaps.cpp new file mode 100644 index 000000000000..4df4829a04c4 --- /dev/null +++ b/llvm/lib/Transforms/Vectorize/SandboxVectorizer/InstrMaps.cpp @@ -0,0 +1,21 @@ +//===- InstructionMaps.cpp - Maps scalars to vectors and reverse ----------===// +// +// 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 +// +//===----------------------------------------------------------------------===// + +#include "llvm/Transforms/Vectorize/SandboxVectorizer/InstrMaps.h" +#include "llvm/Support/Debug.h" + +namespace llvm::sandboxir { + +#ifndef NDEBUG +void InstrMaps::dump() const { + print(dbgs()); + dbgs() << "\n"; +} +#endif // NDEBUG + +} // namespace llvm::sandboxir |
