[NVPTX] Silence a GCC warning found by the buildbots
The cast to NVPTXTargetLowering was missing a 'const', but let's just access the right pointer through the subtarget anyway. llvm-svn: 213793
This commit is contained in:
parent
c4968e508b
commit
2cb5e181d1
|
|
@ -98,7 +98,7 @@ bool NVPTXDAGToDAGISel::useF32FTZ() const {
|
|||
}
|
||||
|
||||
bool NVPTXDAGToDAGISel::allowFMA() const {
|
||||
const NVPTXTargetLowering *TL = (NVPTXTargetLowering *)getTargetLowering();
|
||||
const NVPTXTargetLowering *TL = Subtarget.getTargetLowering();
|
||||
return TL->allowFMA(*MF, OptLevel);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue