diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-06 16:34:12 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-06 16:34:12 +0000 |
commit | a8276c53233579831b94bab4acec45e7d4c23c60 (patch) | |
tree | 3f5fd0d98b8daaeb0931ca6df0d2f23365fe50d2 /llvm/tools/llvmc2/Utility.cpp | |
parent | cb2e6366069f3017afa535517e4473cd672a4eab (diff) | |
download | bcm5719-llvm-a8276c53233579831b94bab4acec45e7d4c23c60.tar.gz bcm5719-llvm-a8276c53233579831b94bab4acec45e7d4c23c60.zip |
Code reorg
llvm-svn: 50722
Diffstat (limited to 'llvm/tools/llvmc2/Utility.cpp')
-rw-r--r-- | llvm/tools/llvmc2/Utility.cpp | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/llvm/tools/llvmc2/Utility.cpp b/llvm/tools/llvmc2/Utility.cpp deleted file mode 100644 index c53578ad44b..00000000000 --- a/llvm/tools/llvmc2/Utility.cpp +++ /dev/null @@ -1,39 +0,0 @@ -//===--- Utility.cpp - The LLVM Compiler Driver -----------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open -// Source License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// Various helper and utility functions - implementation. -// -//===----------------------------------------------------------------------===// - -#include "Utility.h" - -#include "llvm/System/Program.h" - -#include <stdexcept> - -using namespace llvm; - -int llvmcc::ExecuteProgram(const std::string& name, - const std::vector<std::string>& args) { - sys::Path prog = sys::Program::FindProgramByName(name); - - if (prog.isEmpty()) - throw std::runtime_error("Can't find program '" + name + "'"); - if (!prog.canExecute()) - throw std::runtime_error("Program '" + name + "' is not executable."); - - // Invoke the program - std::vector<const char*> argv((args.size()+2)); - argv[0] = name.c_str(); - for (unsigned i = 1; i <= args.size(); ++i) - argv[i] = args[i-1].c_str(); - argv[args.size()+1] = 0; // null terminate list. - - return sys::Program::ExecuteAndWait(prog, &argv[0]); -} |