Skip to content

Commit 46f7929

Browse files
committed
Revert "Remove llvm/MC/MCAsmLayout.h"
This reverts commit 122db8b.
1 parent 48263bd commit 46f7929

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

clang/docs/tools/clang-formatted-files.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5357,6 +5357,7 @@ llvm/include/llvm/MC/MCAsmInfoELF.h
53575357
llvm/include/llvm/MC/MCAsmInfoGOFF.h
53585358
llvm/include/llvm/MC/MCAsmInfoWasm.h
53595359
llvm/include/llvm/MC/MCAsmInfoXCOFF.h
5360+
llvm/include/llvm/MC/MCAsmLayout.h
53605361
llvm/include/llvm/MC/MCCodeView.h
53615362
llvm/include/llvm/MC/MCContext.h
53625363
llvm/include/llvm/MC/MCFixedLenDisassembler.h

llvm/include/llvm/MC/MCAsmLayout.h

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
//===- MCAsmLayout.h - Assembly Layout Object -------------------*- 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+
#ifndef LLVM_MC_MCASMLAYOUT_H
10+
#define LLVM_MC_MCASMLAYOUT_H
11+
12+
namespace llvm {
13+
class MCAssembler;
14+
15+
class MCAsmLayout {
16+
public:
17+
MCAsmLayout(MCAssembler &) {}
18+
};
19+
20+
} // end namespace llvm
21+
22+
#endif

0 commit comments

Comments
 (0)