---
configure.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)diff --git a/configure.py b/configure.py
index 7d4b537..df41c3e 100755
--- a/configure.py
+++ b/configure.py
@@ -66,7 +66,7 @@ def llvm_config(args):
sys.exit(1)llvm_version = string.split(string.replace(llvm_config(['--version']), 'svn', ''), '.')
-if (int(llvm_version[0]) != 3 and int(llvm_version[1]) != 6):
+if (int(llvm_version[0]) != 3 or int(llvm_version[1]) != 6):
ToT libclc should work with ToT llvm, so if anything we should require LLVM 3.7.
-Tom