summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r600/llvm_wrapper.h
blob: 3a696455cdf61327afbe680f221c7a39be80e572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef LLVM_WRAPPER_H
#define LLVM_WRAPPER_H

#include <llvm-c/Core.h>

#ifdef __cplusplus
extern "C" {
#endif

LLVMModuleRef llvm_parse_bitcode(const unsigned char * bitcode, unsigned bitcode_len);

#ifdef __cplusplus
}
#endif

#endif