forked from OSchip/llvm-project
We missed two files in the last commit.
Contributed-by: Johannes Doerfert <doerfert@cs.uni-saarland.de> llvm-svn: 206901
This commit is contained in:
parent
0d11dbabc4
commit
841009a2cc
|
@ -1,5 +1,5 @@
|
|||
config.suffixes = ['.ll']
|
||||
|
||||
gpgpu = config.root.enable_gpgpu_codegen
|
||||
if gpgpu not in ['TRUE', 'true'] :
|
||||
if gpgpu not in ['TRUE', 'true', 'yes', 'YES']:
|
||||
config.unsupported = True
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
cloog = config.root.cloog_found
|
||||
if cloog not in ['TRUE', 'true'] :
|
||||
if cloog not in ['TRUE', 'true', 'yes', 'YES'] :
|
||||
config.unsupported = True
|
||||
|
|
Loading…
Reference in New Issue