| //===- MCAsmMacro.h - Assembly Macros ---------------------------*- C++ -*-===// |
| // 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/MC/MCAsmMacro.h" |
| #include "llvm/Support/raw_ostream.h" |
| #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
| void MCAsmMacroParameter::dump(raw_ostream &OS) const { |
| OS << "\"" << Name << "\""; |
| for (const AsmToken &T : Value) { |
| void MCAsmMacro::dump(raw_ostream &OS) const { |
| OS << "Macro " << Name << ":\n"; |
| for (const MCAsmMacroParameter &P : Parameters) { |
| for (StringRef L : Locals) |
| OS << " (BEGIN BODY)" << Body << "(END BODY)\n"; |