OSDN Git Service

radeonsi: Re-enable LLVM IR dumps
authorTom Stellard <thomas.stellard@amd.com>
Wed, 7 Jan 2015 20:51:48 +0000 (15:51 -0500)
committerTom Stellard <thomas.stellard@amd.com>
Tue, 20 Jan 2015 14:55:44 +0000 (09:55 -0500)
This was inadvertently disabled by
761e36b4caab4e8e09a4c2b1409a825902fc7d2c.

src/gallium/drivers/radeon/radeon_llvm_emit.c

index b98afb2..0f9dbab 100644 (file)
@@ -162,7 +162,6 @@ unsigned radeon_llvm_compile(LLVMModuleRef M, struct radeon_shader_binary *binar
                strncpy(cpu, gpu_family, CPU_STRING_LEN);
                memset(fs, 0, sizeof(fs));
                if (dump) {
-                       LLVMDumpModule(M);
                        strncpy(fs, "+DumpCode", FS_STRING_LEN);
                }
                tm = LLVMCreateTargetMachine(target, triple, cpu, fs,
@@ -170,6 +169,9 @@ unsigned radeon_llvm_compile(LLVMModuleRef M, struct radeon_shader_binary *binar
                                                  LLVMCodeModelDefault);
                dispose_tm = true;
        }
+       if (dump) {
+               LLVMDumpModule(M);
+       }
        /* Setup Diagnostic Handler*/
        llvm_ctx = LLVMGetModuleContext(M);