Fix LLVM TOT build issue.

This commit is contained in:
Peng Tu
2012-11-21 19:09:10 -08:00
parent a267762f59
commit 16b0806d40
4 changed files with 11 additions and 5 deletions

4
ispc.h
View File

@@ -40,8 +40,8 @@
#define ISPC_VERSION "1.3.1dev"
#if !defined(LLVM_3_0) && !defined(LLVM_3_1) && !defined(LLVM_3_2)
#error "Only LLVM 3.0, 3.1, and the 3.2 development branch are supported"
#if !defined(LLVM_3_0) && !defined(LLVM_3_1) && !defined(LLVM_3_2) && !defined(LLVM_3_3)
#error "Only LLVM 3.0, 3.1, 3.2 and the 3.3 development branch are supported"
#endif
#if defined(_WIN32) || defined(_WIN64)