mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-10 20:33:15 +00:00
Fix unused variable
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202080 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bc247e4afd
commit
2e4ab2aa8a
@ -177,9 +177,9 @@ SITargetLowering::SITargetLowering(TargetMachine &TM) :
|
||||
|
||||
for (int I = MVT::v1f64; I <= MVT::v8f64; ++I) {
|
||||
MVT::SimpleValueType VT = static_cast<MVT::SimpleValueType>(I);
|
||||
setOperationAction(ISD::FTRUNC, MVT::f64, Expand);
|
||||
setOperationAction(ISD::FCEIL, MVT::f64, Expand);
|
||||
setOperationAction(ISD::FFLOOR, MVT::f64, Expand);
|
||||
setOperationAction(ISD::FTRUNC, VT, Expand);
|
||||
setOperationAction(ISD::FCEIL, VT, Expand);
|
||||
setOperationAction(ISD::FFLOOR, VT, Expand);
|
||||
}
|
||||
|
||||
if (Subtarget->getGeneration() >= AMDGPUSubtarget::SEA_ISLANDS) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user