Skip to content

Commit

Permalink
[X86] Fix -Wunused-variable in -DLLVM_ENABLE_ASSERTIONS=off builds af…
Browse files Browse the repository at this point in the history
…ter D81833
  • Loading branch information
MaskRay committed Jul 14, 2023
1 parent 3a0a25f commit ad1e78b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/lib/Target/X86/X86ISelLowering.cpp
Expand Up @@ -30073,7 +30073,7 @@ SDValue X86TargetLowering::LowerSET_ROUNDING(SDValue Op,

const unsigned X87StateSize = 28;
const unsigned FPStateSize = 32;
const unsigned FPStateSizeInBits = FPStateSize * 8;
[[maybe_unused]] const unsigned FPStateSizeInBits = FPStateSize * 8;

SDValue X86TargetLowering::LowerGET_FPENV_MEM(SDValue Op,
SelectionDAG &DAG) const {
Expand Down

0 comments on commit ad1e78b

Please sign in to comment.