diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-08-06 06:38:37 +0000 |
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-08-06 06:38:37 +0000 |
| commit | aaf66c73570447c23114cecf01f21705815f5ccd (patch) | |
| tree | b08923ca40477586d68f564d69767326abde8ee8 /llvm/lib/Target/NVPTX | |
| parent | 9bc00b65b6187136ca8af14af6e0ec021f1fdd3b (diff) | |
| download | bcm5719-llvm-aaf66c73570447c23114cecf01f21705815f5ccd.tar.gz bcm5719-llvm-aaf66c73570447c23114cecf01f21705815f5ccd.zip | |
Target/*/CMakeLists.txt: Add the dependency to CommonTableGen explicitly for each corresponding CodeGen.
Without explicit dependencies, both per-file action and in-CommonTableGen action could run in parallel.
It races to emit *.inc files simultaneously.
llvm-svn: 187780
Diffstat (limited to 'llvm/lib/Target/NVPTX')
| -rw-r--r-- | llvm/lib/Target/NVPTX/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/NVPTX/CMakeLists.txt b/llvm/lib/Target/NVPTX/CMakeLists.txt index a8293da7607..be8d323c384 100644 --- a/llvm/lib/Target/NVPTX/CMakeLists.txt +++ b/llvm/lib/Target/NVPTX/CMakeLists.txt @@ -29,7 +29,7 @@ set(NVPTXCodeGen_sources add_llvm_target(NVPTXCodeGen ${NVPTXCodeGen_sources}) -add_dependencies(LLVMNVPTXCodeGen intrinsics_gen) +add_dependencies(LLVMNVPTXCodeGen NVPTXCommonTableGen intrinsics_gen) add_subdirectory(TargetInfo) add_subdirectory(InstPrinter) |

