We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6772e9 commit 6234b76Copy full SHA for 6234b76
llvm/lib/Support/InitLLVM.cpp
@@ -41,8 +41,7 @@ static void RaiseLimits() {
41
42
// Increase the soft limit to the hard limit, if necessary and
43
// possible.
44
- if (r.rlim_cur != RLIM_INFINITY &&
45
- r.rlim_cur != r.rlim_max) {
+ if (r.rlim_cur != RLIM_INFINITY && r.rlim_cur != r.rlim_max) {
46
r.rlim_cur = r.rlim_max;
47
setrlimit(resource, &r);
48
}
0 commit comments