diff options
author | Dave Airlie <[email protected]> | 2017-07-06 02:56:21 +0100 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-07-06 23:05:59 +0100 |
commit | 9d9f0513905af4c916bb01253b324218fccb4272 (patch) | |
tree | 9e84c9197535baf2cc99c2566c96feecc4388350 /src/amd/common/ac_llvm_util.c | |
parent | 076faf8764d3cd8038145286f7533d0a18e82476 (diff) |
ac/radv: change api to create target machine
This just modifies the API to make it easier to add other flags
to target machine creation.
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/common/ac_llvm_util.c')
-rw-r--r-- | src/amd/common/ac_llvm_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/amd/common/ac_llvm_util.c b/src/amd/common/ac_llvm_util.c index d9d8d9124f5..088f01f7ad6 100644 --- a/src/amd/common/ac_llvm_util.c +++ b/src/amd/common/ac_llvm_util.c @@ -118,11 +118,11 @@ static const char *ac_get_llvm_processor_name(enum radeon_family family) } } -LLVMTargetMachineRef ac_create_target_machine(enum radeon_family family, bool supports_spill) +LLVMTargetMachineRef ac_create_target_machine(enum radeon_family family, enum ac_target_machine_options tm_options) { assert(family >= CHIP_TAHITI); - const char *triple = supports_spill ? "amdgcn-mesa-mesa3d" : "amdgcn--"; + const char *triple = (tm_options & AC_TM_SUPPORTS_SPILL) ? "amdgcn-mesa-mesa3d" : "amdgcn--"; LLVMTargetRef target = ac_get_llvm_target(triple); LLVMTargetMachineRef tm = LLVMCreateTargetMachine( target, |