diff options
author | Craig Topper <craig.topper@intel.com> | 2018-10-31 18:46:15 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2018-10-31 18:46:15 +0000 |
commit | eeac12af6d3a8008eea13bcfd2f3c4b15474fe82 (patch) | |
tree | d0197e62044b86b5eb3667194e526f0aa5fa2ebd /llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | dbb117acf2958b16a141b1816ae724591bae4870 (diff) | |
download | bcm5719-llvm-eeac12af6d3a8008eea13bcfd2f3c4b15474fe82.tar.gz bcm5719-llvm-eeac12af6d3a8008eea13bcfd2f3c4b15474fe82.zip |
[SelectionDAGISel] Suppress a -Wunused-but-set-variable warning in release builds. NFC
llvm-svn: 345761
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 90bcaa653c3..dca358032fb 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -1156,6 +1156,7 @@ static void mapWasmLandingPadIndex(MachineBasicBlock *MBB, } } assert(IntrFound && "wasm.landingpad.index intrinsic not found!"); + (void)IntrFound; } } |