diff options
| author | 2020-08-03 15:06:44 +0000 | |
|---|---|---|
| committer | 2020-08-03 15:06:44 +0000 | |
| commit | b64793999546ed8adebaeebd9d8345d18db8927d (patch) | |
| tree | 4357c27b561d73b0e089727c6ed659f2ceff5f47 /gnu/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h | |
| parent | Add support for UTF-8 DISPLAY-HINTs with octet length. For now only (diff) | |
| download | wireguard-openbsd-b64793999546ed8adebaeebd9d8345d18db8927d.tar.xz wireguard-openbsd-b64793999546ed8adebaeebd9d8345d18db8927d.zip | |
Remove LLVM 8.0.1 files.
Diffstat (limited to 'gnu/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h')
| -rw-r--r-- | gnu/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/gnu/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h b/gnu/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h deleted file mode 100644 index 28f119e3596..00000000000 --- a/gnu/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h +++ /dev/null @@ -1,54 +0,0 @@ -//===-- WinCFGuard.h - Windows Control Flow Guard Handling ----*- C++ -*--===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This file contains support for writing windows exception info into asm files. -// -//===----------------------------------------------------------------------===// - -#ifndef LLVM_LIB_CODEGEN_ASMPRINTER_WINCFGUARD_H -#define LLVM_LIB_CODEGEN_ASMPRINTER_WINCFGUARD_H - -#include "llvm/CodeGen/AsmPrinterHandler.h" -#include "llvm/Support/Compiler.h" - -namespace llvm { - -class LLVM_LIBRARY_VISIBILITY WinCFGuard : public AsmPrinterHandler { - /// Target of directive emission. - AsmPrinter *Asm; - -public: - WinCFGuard(AsmPrinter *A); - ~WinCFGuard() override; - - void setSymbolSize(const MCSymbol *Sym, uint64_t Size) override {} - - /// Emit the Control Flow Guard function ID table - void endModule() override; - - /// Gather pre-function debug information. - /// Every beginFunction(MF) call should be followed by an endFunction(MF) - /// call. - void beginFunction(const MachineFunction *MF) override {} - - /// Gather post-function debug information. - /// Please note that some AsmPrinter implementations may not call - /// beginFunction at all. - void endFunction(const MachineFunction *MF) override {} - - /// Process beginning of an instruction. - void beginInstruction(const MachineInstr *MI) override {} - - /// Process end of an instruction. - void endInstruction() override {} -}; - -} // namespace llvm - -#endif |
