summaryrefslogtreecommitdiff
path: root/llvm_context.mm
blob: 0c5480e85df6f9e2e45e5aa7bf80d4000b5658fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  llvm_context.cpp
//  Toilet Lisp
//
//  Created by Matthias Benkard on 08.09.11.
//  Copyright 2011 __MyCompanyName__. All rights reserved.
//

#define __STDC_CONSTANT_MACROS 1

#include "llvm_context.h"

#include <llvm/DerivedTypes.h>
#include <llvm/LLVMContext.h> 
//#include <llvm/Support/TypeBuilder.h>
using namespace llvm;

LLVMContext *llvm_context;
//const Type* IntPtrTy = IntegerType::getInt32Ty(C);
Type* Int8Ty;
Type* Int16Ty;
Type* Int32Ty;
Type* Int64Ty;
//const Type* VoidTy = TypeBuilder<void, false>::get(llvm_context);
Type* VoidTy;
PointerType* VoidPointerTy;
PointerType* PointerPointerTy;