blob: 9cdc6e387b428b128f0346c5d5d8ff802f8d0f63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//==--- DiagnosticDriverKinds.def - libdriver diagnostics -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifdef DRIVERSTART
__DRIVERSTART = DIAG_START_DRIVER,
#undef DRIVERSTART
#endif
DIAG(err_drv_no_such_file, ERROR,
"no such file or directory: '%0'")
DIAG(err_drv_unsupported_opt, ERROR,
"unsupported option '%0'")
DIAG(err_drv_unknown_stdin_type, ERROR,
"-E or -x required when input is from standard input")
DIAG(err_drv_unknown_language, ERROR,
"language not recognized: '%0'")
|