blob: a92fdd4bebc28fd20fd171f33279b5c22dca06ff [file] [log] [blame]
//===- AMDGPURuntimeMD.h - Generate runtime metadata ---------------*- C++ -*-//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file declares functions for generating runtime metadata.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIB_TARGET_AMDGPU_MCTARGETDESC_AMDGPURUNTIMEMD_H
#define LLVM_LIB_TARGET_AMDGPU_MCTARGETDESC_AMDGPURUNTIMEMD_H
#include <string>
namespace llvm {
class Module;
// Get runtime metadata as YAML string.
std::string getRuntimeMDYAMLString(Module &M);
}
#endif