From: Justin Holewinski Date: Wed, 30 Jul 2014 14:53:00 +0000 (+0000) Subject: Merging r213793: X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=031d076156ca750fb5c56402bc56b385787d5acb;p=llvm Merging r213793: ------------------------------------------------------------------------ r213793 | jholewinski | 2014-07-23 16:23:47 -0400 (Wed, 23 Jul 2014) | 4 lines [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/branches/release_35@214310 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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); }