mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 22:04:55 +00:00
351ba145a7
code that includes Intrinsics.gen directly. This never showed up in my testing because the old Intrinsics.gen was still kicking around in the make build system and was correct there. =[ Thankfully, some of the bots to clean rebuilds and that caught this. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171373 91177308-0d34-0410-b5e6-96231b3b80d8
8 lines
252 B
CMake
8 lines
252 B
CMake
set(LLVM_TARGET_DEFINITIONS Intrinsics.td)
|
|
|
|
tablegen(LLVM Intrinsics.gen -gen-intrinsic)
|
|
|
|
add_custom_target(intrinsics_gen ALL
|
|
DEPENDS ${llvm_builded_incs_dir}/IR/Intrinsics.gen)
|
|
set_target_properties(intrinsics_gen PROPERTIES FOLDER "Tablegenning")
|