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 e7b3600 commit 079d268Copy full SHA for 079d268
llvm/tools/llvm-exegesis/lib/AArch64/Target.cpp
@@ -220,11 +220,7 @@ class ExegesisAArch64Target : public ExegesisTarget {
220
// safer to check the existing key state and then disable/enable them.
221
// Hence the guard for switching.
222
errno = 0;
223
- unsigned long PacKeys = prctl_wrapper(PR_PAC_GET_ENABLED_KEYS,
224
- 0, // unused
225
226
227
- 0); // unused
+ unsigned long PacKeys = prctl_wrapper(PR_PAC_GET_ENABLED_KEYS);
228
if ((long)PacKeys < 0) {
229
if (errno == EINVAL) {
230
return "PAuth not supported on this system";
0 commit comments