diff options
author | Tom Stellard <[email protected]> | 2013-04-02 10:42:50 -0700 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2013-05-06 09:06:06 -0700 |
commit | 024fe6852a76f33d7e2afc5621340e387c381bb0 (patch) | |
tree | 7f51eaef023680967b689e743e00ba086f2b1152 /src/gallium/drivers/radeon/Makefile.sources | |
parent | 55eb8eaaa8bf8696d56effce6ed87f03bea779e0 (diff) |
radeon/llvm: Use LLVM C API for compiling LLVM IR to ISA v2
The LLVM C API is considered stable and should never change, so it
is much more desirable to use than the LLVM C++ API, which is constantly in
flux.
v2:
- Split target initialization and lookup into separate functions
Reviewed-by: [email protected]
Diffstat (limited to 'src/gallium/drivers/radeon/Makefile.sources')
-rw-r--r-- | src/gallium/drivers/radeon/Makefile.sources | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gallium/drivers/radeon/Makefile.sources b/src/gallium/drivers/radeon/Makefile.sources index a23d5c4ad2c..d33c81b0fc0 100644 --- a/src/gallium/drivers/radeon/Makefile.sources +++ b/src/gallium/drivers/radeon/Makefile.sources @@ -1,9 +1,7 @@ C_SOURCES := \ radeon_uvd.c -LLVM_CPP_FILES := \ - radeon_llvm_emit.cpp - LLVM_C_FILES := \ radeon_setup_tgsi_llvm.c \ + radeon_llvm_emit.c \ radeon_llvm_util.c |