1 //===- MCAsmMacro.h - Assembly Macros ---------------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 #include "llvm/MC/MCAsmMacro.h"
10 #include "llvm/Support/raw_ostream.h"
14 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
15 void MCAsmMacroParameter::dump(raw_ostream
&OS
) const {
16 OS
<< "\"" << Name
<< "\"";
24 for (const AsmToken
&T
: Value
) {
34 void MCAsmMacro::dump(raw_ostream
&OS
) const {
35 OS
<< "Macro " << Name
<< ":\n";
36 OS
<< " Parameters:\n";
37 for (const MCAsmMacroParameter
&P
: Parameters
) {
41 if (!Locals
.empty()) {
43 for (StringRef L
: Locals
)
44 OS
<< " " << L
<< '\n';
46 OS
<< " (BEGIN BODY)" << Body
<< "(END BODY)\n";