[llvm] r182590 - More symbols that should be static.
Rafael EspĂndola
rafael.espindola at gmail.com
Fri May 24 12:26:58 PDT 2013
Thanks for all these fixes!
On 23 May 2013 12:09, Benjamin Kramer <benny.kra at googlemail.com> wrote:
> Author: d0k
> Date: Thu May 23 11:09:15 2013
> New Revision: 182590
>
> URL: http://llvm.org/viewvc/llvm-project?rev=182590&view=rev
> Log:
> More symbols that should be static.
>
> Modified:
> llvm/trunk/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
> llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp
>
> Modified: llvm/trunk/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp?rev=182590&r1=182589&r2=182590&view=diff
> ==============================================================================
> --- llvm/trunk/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp (original)
> +++ llvm/trunk/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp Thu May 23 11:09:15 2013
> @@ -17,13 +17,11 @@
>
> using namespace llvm;
>
> -bool CompileForDebugging;
> -
> // -debug-compile - Command line option to inform opt and llc passes to
> // compile for debugging
> -static cl::opt<bool, true>
> -Debug("debug-compile", cl::desc("Compile for debugging"), cl::Hidden,
> - cl::location(CompileForDebugging), cl::init(false));
> +static cl::opt<bool> CompileForDebugging("debug-compile",
> + cl::desc("Compile for debugging"),
> + cl::Hidden, cl::init(false));
>
> void NVPTXMCAsmInfo::anchor() {}
>
>
> Modified: llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp?rev=182590&r1=182589&r2=182590&view=diff
> ==============================================================================
> --- llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp (original)
> +++ llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp Thu May 23 11:09:15 2013
> @@ -1362,8 +1362,8 @@ static bool SinkThenElseCodeToEnd(Branch
> ///
> /// \return The pointer to the value of the previous store if the store can be
> /// hoisted into the predecessor block. 0 otherwise.
> -Value *isSafeToSpeculateStore(Instruction *I, BasicBlock *BrBB,
> - BasicBlock *StoreBB, BasicBlock *EndBB) {
> +static Value *isSafeToSpeculateStore(Instruction *I, BasicBlock *BrBB,
> + BasicBlock *StoreBB, BasicBlock *EndBB) {
> StoreInst *StoreToHoist = dyn_cast<StoreInst>(I);
> if (!StoreToHoist)
> return 0;
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
More information about the llvm-commits
mailing list