aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-06-19 05:46:06 +0000
committerChris Lattner <sabre@nondot.org>2007-06-19 05:46:06 +0000
commit3ee774091ba6d25c7db4b0481b963454bd6d9903 (patch)
tree4e2f4c4c40eb65202e085afe7bedda6fd2d16ee6
parent2384d7b1796b8690ea8292c6f4d3980a0dec77f4 (diff)
downloadexternal_llvm-3ee774091ba6d25c7db4b0481b963454bd6d9903.zip
external_llvm-3ee774091ba6d25c7db4b0481b963454bd6d9903.tar.gz
external_llvm-3ee774091ba6d25c7db4b0481b963454bd6d9903.tar.bz2
describe an argument, hide it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37650 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/PowerPC/PPCISelLowering.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCISelLowering.cpp b/lib/Target/PowerPC/PPCISelLowering.cpp
index 7028c9e..bf07fc6 100644
--- a/lib/Target/PowerPC/PPCISelLowering.cpp
+++ b/lib/Target/PowerPC/PPCISelLowering.cpp
@@ -32,7 +32,9 @@
#include "llvm/Support/CommandLine.h"
using namespace llvm;
-static cl::opt<bool> EnablePPCPreinc("enable-ppc-preinc");
+static cl::opt<bool> EnablePPCPreinc("enable-ppc-preinc",
+cl::desc("enable preincrement load/store generation on PPC (experimental)"),
+ cl::Hidden);
PPCTargetLowering::PPCTargetLowering(PPCTargetMachine &TM)
: TargetLowering(TM), PPCSubTarget(*TM.getSubtargetImpl()) {