diff options
author | Chris Lattner <sabre@nondot.org> | 2001-07-23 17:46:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-07-23 17:46:59 +0000 |
commit | 57dbb3ad63b6a0e77798edb156ef43daa3bfc67e (patch) | |
tree | b10d00a2fd1de0f409b4f341f0a3b1ace177ec15 /tools/llvm-as/as.cpp | |
parent | dbab15a2c9accc0242109881e1632137cb97dbc9 (diff) | |
download | external_llvm-57dbb3ad63b6a0e77798edb156ef43daa3bfc67e.zip external_llvm-57dbb3ad63b6a0e77798edb156ef43daa3bfc67e.tar.gz external_llvm-57dbb3ad63b6a0e77798edb156ef43daa3bfc67e.tar.bz2 |
Moved inline/llvm/Tools/* to include/llvm/Support/*
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@279 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-as/as.cpp')
-rw-r--r-- | tools/llvm-as/as.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-as/as.cpp b/tools/llvm-as/as.cpp index da05a36..8cb2747 100644 --- a/tools/llvm-as/as.cpp +++ b/tools/llvm-as/as.cpp @@ -16,7 +16,7 @@ #include "llvm/Assembly/Parser.h" #include "llvm/Assembly/Writer.h" #include "llvm/Bytecode/Writer.h" -#include "llvm/Tools/CommandLine.h" +#include "llvm/Support/CommandLine.h" cl::String InputFilename ("", "Parse <arg> file, compile to bytecode", 0, "-"); cl::String OutputFilename("o", "Override output filename", 0, ""); |