[llvm] r289788 - Fix for build warning in execute-only support

David Blaikie via llvm-commits llvm-commits at lists.llvm.org
Mon Dec 19 20:13:58 PST 2016


Please include details of the warning or what the fix is in the commit
message - personally, I find it easier to read if the commit message
describes, primarily, what change is being made (rather than "fix a
warning" - instead "reorder ctor initializer list to match member order"
for example) - some details about the warning can also be included (as an
addendum to the subject/first line, or in the body of the commit message
instead)

On Thu, Dec 15, 2016 at 1:08 AM Prakhar Bahuguna via llvm-commits <
llvm-commits at lists.llvm.org> wrote:

> Author: prakhar
> Date: Thu Dec 15 02:42:04 2016
> New Revision: 289788
>
> URL: http://llvm.org/viewvc/llvm-project?rev=289788&view=rev
> Log:
> Fix for build warning in execute-only support
>
> Modified:
>     llvm/trunk/lib/Target/ARM/ARMSubtarget.cpp
>
> Modified: llvm/trunk/lib/Target/ARM/ARMSubtarget.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMSubtarget.cpp?rev=289788&r1=289787&r2=289788&view=diff
>
> ==============================================================================
> --- llvm/trunk/lib/Target/ARM/ARMSubtarget.cpp (original)
> +++ llvm/trunk/lib/Target/ARM/ARMSubtarget.cpp Thu Dec 15 02:42:04 2016
> @@ -94,8 +94,8 @@ ARMSubtarget::ARMSubtarget(const Triple
>                             const std::string &FS,
>                             const ARMBaseTargetMachine &TM, bool IsLittle)
>      : ARMGenSubtargetInfo(TT, CPU, FS), UseMulOps(UseFusedMulOps),
> -      CPUString(CPU), IsLittle(IsLittle), TargetTriple(TT),
> Options(TM.Options),
> -      TM(TM), GenExecuteOnly(EnableExecuteOnly),
> +      GenExecuteOnly(EnableExecuteOnly), CPUString(CPU),
> IsLittle(IsLittle),
> +      TargetTriple(TT), Options(TM.Options), TM(TM),
>        FrameLowering(initializeFrameLowering(CPU, FS)),
>        // At this point initializeSubtargetDependencies has been called so
>        // we can query directly.
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20161220/18506ec7/attachment.html>


More information about the llvm-commits mailing list