From: Chris Lattner Date: Wed, 8 Apr 2009 03:36:03 +0000 (+0000) Subject: fix typo, noticed by Gabor X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=56473d3a1b9207e0f9449a80de8a3589bb1cc993;p=clang fix typo, noticed by Gabor git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68587 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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 &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 {