MSVC compile fix: #include <ciso646>. NFC.

This header is required to make the ISO 646 alternative operator
spellings ("and", "or" instead of "&&", "||") work. Should these
operators be replaced by the standard ones as already suggested by
Johannes, also remove this #include again.

llvm-svn: 271206
This commit is contained in:
Michael Kruse 2016-05-30 14:27:14 +00:00
parent 9fcf3552ad
commit 7410a27820
1 changed files with 1 additions and 0 deletions

View File

@ -65,6 +65,7 @@
#include "isl/space.h"
#include "isl/union_map.h"
#include "isl/union_set.h"
#include <ciso646>
using namespace llvm;
using namespace polly;