[GlobalISel] Silence gcc warning about unused variable
authorMikael Holmen <mikael.holmen@ericsson.com>
Thu, 7 Oct 2021 05:18:04 +0000 (07:18 +0200)
committerMikael Holmen <mikael.holmen@ericsson.com>
Thu, 7 Oct 2021 05:18:04 +0000 (07:18 +0200)
llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp

index f33eac4..711006d 100644 (file)
@@ -3184,6 +3184,9 @@ bool IRTranslator::emitSPDescriptorParent(StackProtectorDescriptor &SPD,
     // This path is currently untestable on GlobalISel, since the only platform
     // that needs this seems to be Windows, and we fall back on that currently.
     // The code still lives here in case that changes.
+    // Silence warning about unused variable until the code below that uses
+    // 'GuardCheckFn' is enabled.
+    (void)GuardCheckFn;
     return false;
 #if 0
     // The target provides a guard check function to validate the guard value.