summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/llvm/tgsitollvm.h
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-02-15 11:18:04 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2008-02-15 11:18:04 +0000
commit30d0bacf7aecfb6013ddd665d7385209899eeebd (patch)
treece764e101617349add47e4250aed1adde8b6407e /src/gallium/auxiliary/llvm/tgsitollvm.h
parent6ac2c1cc0cd1253ba2014d459010032127f185ec (diff)
parent66f22aa3bf7fa546e946b45156aa578e202982c9 (diff)
Merge commit 'origin/gallium-0.1' into gallium-0.1
Diffstat (limited to 'src/gallium/auxiliary/llvm/tgsitollvm.h')
-rw-r--r--src/gallium/auxiliary/llvm/tgsitollvm.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/llvm/tgsitollvm.h b/src/gallium/auxiliary/llvm/tgsitollvm.h
new file mode 100644
index 0000000000..7ada04d629
--- /dev/null
+++ b/src/gallium/auxiliary/llvm/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