mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
[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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213793 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d55c7c7f42
commit
ce64168930
@ -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…
x
Reference in New Issue
Block a user