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 cca2e2c..8e396cd 100644
--- a/tools/clang-cc/clang-cc.cpp
+++ b/tools/clang-cc/clang-cc.cpp
@@ -971,7 +971,7 @@
     // 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 {