1 config.suffixes = ['.ll'] 2 3 def getRoot(config): 4 if not config.parent: 5 return config 6 return getRoot(config.parent) 7 8 root = getRoot(config) 9 if not root.llvm_use_intel_jitevents == "ON": 10 config.unsupported = True 11 12