xref: /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/Debug.h (revision 700637cbb5e582861067a11aaca4d053546871d2)
1 //===- Debug.h --------------------------------------------------*- C++ -*-===//
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 //===----------------------------------------------------------------------===//
8 //
9 // Defines the DEBUG_TYPE macro for LLVM_DEBUG which is shared across the
10 // vectorizer components.
11 //
12 
13 #ifndef LLVM_TRANSFORMS_VECTORIZE_SANDBOXVECTORIZER_DEBUG_H
14 #define LLVM_TRANSFORMS_VECTORIZE_SANDBOXVECTORIZER_DEBUG_H
15 
16 #include "llvm/Support/Debug.h"
17 
18 #define DEBUG_TYPE "sandbox-vectorizer"
19 #define DEBUG_PREFIX "SBVec: "
20 
21 #endif // LLVM_TRANSFORMS_VECTORIZE_SANDBOXVECTORIZER_DEBUG_H
22