From ce6416893041b3627bf2351c21a91c04eeca23cc Mon Sep 17 00:00:00 2001 From: Justin Holewinski Date: Wed, 23 Jul 2014 20:23:47 +0000 Subject: [PATCH] [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 --- lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp b/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp index aeda71ff0e9..05205fba1af 100644 --- a/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp +++ b/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp @@ -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); }