diff options
-rw-r--r-- | llvm/tools/llvmc/llvmc.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/tools/llvmc/llvmc.cpp b/llvm/tools/llvmc/llvmc.cpp index dc78397b1e4..d45083ea0ff 100644 --- a/llvm/tools/llvmc/llvmc.cpp +++ b/llvm/tools/llvmc/llvmc.cpp @@ -253,6 +253,9 @@ int main(int argc, char **argv) { // Make sure we print stack trace if we get bad signals sys::PrintStackTraceOnErrorSignal(); + std::cout << "NOTE: llvmc is highly experimental and mostly useless right " + "now.\nPlease use llvm-gcc directly instead.\n\n"; + try { // Parse the command line options |