diff options
author | Eric Christopher <echristo@apple.com> | 2010-09-18 18:52:28 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-09-18 18:52:28 +0000 |
commit | 50880d08ec32857fa557281046c81a0506e7f64d (patch) | |
tree | 6c9556b109d89b999fdc92088733123af2ac5bbf /lib/Target/PTX/Makefile | |
parent | 168705049c55feec88aec65af0aef07fc1376ce6 (diff) | |
download | external_llvm-50880d08ec32857fa557281046c81a0506e7f64d.zip external_llvm-50880d08ec32857fa557281046c81a0506e7f64d.tar.gz external_llvm-50880d08ec32857fa557281046c81a0506e7f64d.tar.bz2 |
Add the exit instruction to the PTX target.
Patch by Che-Liang Chiou <clchiou@gmail.com>!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114294 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PTX/Makefile')
-rw-r--r-- | lib/Target/PTX/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/Target/PTX/Makefile b/lib/Target/PTX/Makefile index fcbf931..cfb3b9c 100644 --- a/lib/Target/PTX/Makefile +++ b/lib/Target/PTX/Makefile @@ -12,7 +12,14 @@ LIBRARYNAME = LLVMPTXCodeGen TARGET = PTX # Make sure that tblgen is run, first thing. -BUILT_SOURCES = +BUILT_SOURCES = PTXGenAsmWriter.inc \ + PTXGenDAGISel.inc \ + PTXGenInstrInfo.inc \ + PTXGenInstrNames.inc \ + PTXGenRegisterInfo.inc \ + PTXGenRegisterInfo.h.inc \ + PTXGenRegisterNames.inc \ + PTXGenSubtarget.inc DIRS = AsmPrinter TargetInfo |