blob: dd89b8f11c0e4a93d6fcddc3fae4939ea9fa5edc [file] [log] [blame]
Daniel Dunbar48f7ce82009-09-24 06:23:57 +00001//===- not.cpp - The 'not' testing tool -----------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/System/Path.h"
11#include "llvm/System/Program.h"
12using namespace llvm;
13
14int main(int argc, const char **argv) {
15 sys::Path Program = sys::Program::FindProgramByName(argv[1]);
16 return !sys::Program::ExecuteAndWait(Program, argv + 1);
17}