mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 03:30:28 +00:00
22 lines
620 B
C++
22 lines
620 B
C++
|
//===-- AMDGPUCodeEmitter.cpp - AMDGPU Code Emitter interface -------------===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
/// \file
|
||
|
/// \brief CodeEmitter interface for R600 and SI codegen.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "AMDGPUMCCodeEmitter.h"
|
||
|
|
||
|
using namespace llvm;
|
||
|
|
||
|
// pin vtable to this file
|
||
|
void AMDGPUMCCodeEmitter::anchor() {}
|
||
|
|