File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -5357,6 +5357,7 @@ llvm/include/llvm/MC/MCAsmInfoELF.h
5357
5357
llvm/include/llvm/MC/MCAsmInfoGOFF.h
5358
5358
llvm/include/llvm/MC/MCAsmInfoWasm.h
5359
5359
llvm/include/llvm/MC/MCAsmInfoXCOFF.h
5360
+ llvm/include/llvm/MC/MCAsmLayout.h
5360
5361
llvm/include/llvm/MC/MCCodeView.h
5361
5362
llvm/include/llvm/MC/MCContext.h
5362
5363
llvm/include/llvm/MC/MCFixedLenDisassembler.h
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments