diff options
author | José Fonseca <[email protected]> | 2008-02-18 20:05:06 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-02-18 20:05:06 +0900 |
commit | 3f3b09d6d86cfd277c5837d15466ee703897aa3d (patch) | |
tree | 61d639bac7f5542e907ad1d5560713ed786172b8 /src/gallium/auxiliary/gallivm/tgsitollvm.h | |
parent | 687a8b96ef13658bbe779d0011ce1144844f1972 (diff) |
Rename llvm -> gallivm.
Following the directory == library name policy simplifies the build system.
Diffstat (limited to 'src/gallium/auxiliary/gallivm/tgsitollvm.h')
-rw-r--r-- | src/gallium/auxiliary/gallivm/tgsitollvm.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/gallivm/tgsitollvm.h b/src/gallium/auxiliary/gallivm/tgsitollvm.h new file mode 100644 index 00000000000..7ada04d6299 --- /dev/null +++ b/src/gallium/auxiliary/gallivm/tgsitollvm.h @@ -0,0 +1,20 @@ +#ifndef TGSITOLLVM_H +#define TGSITOLLVM_H + + +namespace llvm { + class Module; +} + +struct gallivm_ir; +struct tgsi_token; + + +llvm::Module * tgsi_to_llvm(struct gallivm_ir *ir, + const struct tgsi_token *tokens); + + +llvm::Module * tgsi_to_llvmir(struct gallivm_ir *ir, + const struct tgsi_token *tokens); + +#endif |