33 lines · c
1//===-- AMDGPUNoteType.h - AMDGPU ELF PT_NOTE section info-------*- 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-exception6//7//===----------------------------------------------------------------------===//8//9/// \file10///11/// Enums and constants for AMDGPU PT_NOTE sections.12///13//14//===----------------------------------------------------------------------===//15//16#ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUPTNOTE_H17#define LLVM_LIB_TARGET_AMDGPU_AMDGPUPTNOTE_H18 19namespace llvm {20namespace AMDGPU {21 22namespace ElfNote {23 24const char SectionName[] = ".note";25 26const char NoteNameV2[] = "AMD";27const char NoteNameV3[] = "AMDGPU";28 29} // End namespace ElfNote30} // End namespace AMDGPU31} // End namespace llvm32#endif // LLVM_LIB_TARGET_AMDGPU_AMDGPUPTNOTE_H33