LLVM  4.0.0
AMDGPUPTNote.h
Go to the documentation of this file.
1 //===-- AMDGPUNoteType.h - AMDGPU ELF PT_NOTE section info-------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 /// \file
11 ///
12 /// Enums and constants for AMDGPU PT_NOTE sections.
13 ///
14 //
15 //===----------------------------------------------------------------------===//
16 //
17 #ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUPTNOTE_H
18 #define LLVM_LIB_TARGET_AMDGPU_AMDGPUPTNOTE_H
19 
20 namespace AMDGPU {
21 
22 namespace PT_NOTE {
23 
24 const char SectionName[] = ".note";
25 
26 const char NoteName[] = "AMD";
27 
28 enum NoteType{
38 };
39 }
40 }
41 
42 #endif // LLVM_LIB_TARGET_AMDGPU_AMDGPUNOTETYPE_H
const char NoteName[]
Definition: AMDGPUPTNote.h:26
const char SectionName[]
Definition: AMDGPUPTNote.h:24