diff options
author | Chris Lattner <sabre@nondot.org> | 2007-10-29 03:14:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-10-29 03:14:55 +0000 |
commit | 05691876536c68b4870c1dcbcfef83499419473f (patch) | |
tree | 38647c958ff16a0b0e0279397ba5ccc791ff551c /lib/VMCore | |
parent | fb7f3436150617c36dbe2737bf2e20183b06214f (diff) | |
download | external_llvm-05691876536c68b4870c1dcbcfef83499419473f.zip external_llvm-05691876536c68b4870c1dcbcfef83499419473f.tar.gz external_llvm-05691876536c68b4870c1dcbcfef83499419473f.tar.bz2 |
I am not sure this is a good idea to be an option, but rename the option for
now. It conflicts with clang's -pedantic flag.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43431 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/Verifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp index 1d35d65..68c30bb 100644 --- a/lib/VMCore/Verifier.cpp +++ b/lib/VMCore/Verifier.cpp @@ -69,7 +69,7 @@ using namespace llvm; namespace { // Anonymous namespace for class cl::opt<bool> - Pedantic("pedantic", + Pedantic("verify-pedantic", cl::desc("Reject code with undefined behaviour")); struct VISIBILITY_HIDDEN |