diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-03 01:53:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-03 01:53:40 +0000 |
commit | ed5424196d79746542e14bf959842fb94bc8fb9c (patch) | |
tree | 5fc86a7b35706ce8481b3e78a4a89f2a460c8212 /utils/TableGen/TableGen.cpp | |
parent | c1d6e4eba7a37392c9761cdd08f85167d3342456 (diff) |
Add support for "-Ifoo" in addition to "-I foo"
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26487 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/TableGen.cpp')
-rw-r--r-- | utils/TableGen/TableGen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/TableGen.cpp b/utils/TableGen/TableGen.cpp index 1007e1baaf..366af85bc6 100644 --- a/utils/TableGen/TableGen.cpp +++ b/utils/TableGen/TableGen.cpp @@ -84,7 +84,7 @@ namespace { cl::list<std::string> IncludeDirs("I", cl::desc("Directory of include files"), - cl::value_desc("directory")); + cl::value_desc("directory"), cl::Prefix); } namespace llvm { |