Re: [Mesa-dev] [PATCH] radeonsi: remove bogus r600-- triple

2015-04-15 Thread Emil Velikov
On 15 April 2015 at 10:24, Michel Dänzer wrote: > On 09.04.2015 03:27, Emil Velikov wrote: >> As mentioned by Michel Dänzer for LLVM >= 3.6 we create the >> LLVMTargetMachine (with triple amdgcn--), as we setup the radeonsi >> context. For older LLVM or hardware (r600) the triple is always r600--

Re: [Mesa-dev] [PATCH] radeonsi: remove bogus r600-- triple

2015-04-15 Thread Michel Dänzer
On 09.04.2015 03:27, Emil Velikov wrote: > As mentioned by Michel Dänzer for LLVM >= 3.6 we create the > LLVMTargetMachine (with triple amdgcn--), as we setup the radeonsi > context. For older LLVM or hardware (r600) the triple is always r600-- > and is created at a later stage - radeon_llvm_compil

[Mesa-dev] [PATCH] radeonsi: remove bogus r600-- triple

2015-04-08 Thread Emil Velikov
As mentioned by Michel Dänzer for LLVM >= 3.6 we create the LLVMTargetMachine (with triple amdgcn--), as we setup the radeonsi context. For older LLVM or hardware (r600) the triple is always r600-- and is created at a later stage - radeon_llvm_compile() Cc: Michel Dänzer Signed-off-by: Emil Velik