diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-08 03:36:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-08 03:36:03 +0000 |
commit | 56473d3a1b9207e0f9449a80de8a3589bb1cc993 (patch) | |
tree | 84e0f2c866dfaea8561230f7408f161c01ed593f | |
parent | a27e5feaab38b99a0e4473247dbd157f015ea4d1 (diff) |
fix typo, noticed by Gabor
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68587 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/clang-cc/clang-cc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/clang-cc/clang-cc.cpp b/tools/clang-cc/clang-cc.cpp index cca2e2cc14..8e396cd0c7 100644 --- a/tools/clang-cc/clang-cc.cpp +++ b/tools/clang-cc/clang-cc.cpp @@ -971,7 +971,7 @@ static void DefineBuiltinMacro(std::vector<char> &Buf, const char *Macro, // Per GCC -D semantics, the macro ends at \n if it exists. const char *End = strpbrk(Equal, "\n\r"); if (End) { - fprintf(stderr, "warning: macro '%s' contains embeded newline, text " + fprintf(stderr, "warning: macro '%s' contains embedded newline, text " "after the newline is ignored.\n", std::string(Macro, Equal).c_str()); } else { |