Enable stack-probe tests with system LLVM >= 5.0

This commit is contained in:
Josh Stone 2018-01-30 16:47:30 -08:00
parent 560a2f4faf
commit e2de8deb09
4 changed files with 4 additions and 4 deletions

View file

@ -167,7 +167,7 @@ impl EarlyProps {
.expect("Malformed llvm version directive");
// Ignore if using system LLVM and actual version
// is smaller the minimum required version
!(config.system_llvm && &actual_version[..] < min_version)
config.system_llvm && &actual_version[..] < min_version
} else {
false
}