diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-11-01 03:48:49 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-11-01 03:48:49 +0000 |
commit | 7c3f8b3dafebc87b4b1492276f63b6cabbc7c59b (patch) | |
tree | fa12c9a241e14f973e578e2572903eed847ced8f /include/clang/Frontend/CompilerInvocation.h | |
parent | e4a990f34904eb572c8d6aa1deef19465214359c (diff) |
Remove CompilerInvocation::toArgs and clang -cc1test mode. These were untested
and apparently unused (and since they are untested, they're presumably also
broken).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167210 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/CompilerInvocation.h')
-rw-r--r-- | include/clang/Frontend/CompilerInvocation.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/clang/Frontend/CompilerInvocation.h b/include/clang/Frontend/CompilerInvocation.h index bd5846b0d6..1314956c3f 100644 --- a/include/clang/Frontend/CompilerInvocation.h +++ b/include/clang/Frontend/CompilerInvocation.h @@ -145,10 +145,6 @@ public: /// executable), for finding the builtin compiler path. static std::string GetResourcesPath(const char *Argv0, void *MainAddr); - /// \brief Convert the CompilerInvocation to a list of strings suitable for - /// passing to CreateFromArgs. - void toArgs(std::vector<std::string> &Res) const; - /// \brief Set language defaults for the given input language and /// language standard in the given LangOptions object. /// |