forked from OSchip/llvm-project
17 lines
611 B
TableGen
17 lines
611 B
TableGen
|
//===-- AMDGPUIntrinsics.td - Common intrinsics -*- tablegen -*-----------===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// This file defines intrinsics that are used by all hw codegen targets.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
let TargetPrefix = "AMDGPU", isTarget = 1 in {
|
||
|
def int_AMDGPU_kill : Intrinsic<[], [llvm_float_ty], []>;
|
||
|
}
|