summaryrefslogtreecommitdiffstats
path: root/tools/driver
diff options
context:
space:
mode:
authorDylan Noblesmith <nobled@dreamwidth.org>2012-02-13 12:32:26 +0000
committerDylan Noblesmith <nobled@dreamwidth.org>2012-02-13 12:32:26 +0000
commit36d592718ff342f762e32cbde73d1113f88cb275 (patch)
tree88fa23ba7153037e08ac0600ee83467216f287dc /tools/driver
parent1e4c01b79273b9cd4e9e9ecfd3422df3900b8356 (diff)
drop more llvm:: prefixes on SmallString<>
More cleanup after r149799. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150380 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/driver')
-rw-r--r--tools/driver/driver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/driver/driver.cpp b/tools/driver/driver.cpp
index 784b51d59f..e846b091c5 100644
--- a/tools/driver/driver.cpp
+++ b/tools/driver/driver.cpp
@@ -388,7 +388,7 @@ int main(int argc_, const char **argv_) {
// the installed path. We do this manually, because we want to support that
// path being a symlink.
{
- llvm::SmallString<128> InstalledPath(argv[0]);
+ SmallString<128> InstalledPath(argv[0]);
// Do a PATH lookup, if there are no directory components.
if (llvm::sys::path::filename(InstalledPath) == InstalledPath) {