diff options
author | Chris Lattner <sabre@nondot.org> | 2009-02-06 06:45:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-02-06 06:45:26 +0000 |
commit | f73903a1ded46748e1dfda151f5d037b7b3d31f9 (patch) | |
tree | bffed9172e44407822b03c5cd9f42a671f411e48 /lib/Lex/Preprocessor.cpp | |
parent | 09b5c1d08a33ecf5d9c61b922fbe679867336684 (diff) |
Add an implementation of -dM that follows GCC closely enough to permit
diffing the output of:
clang -dM -o - -E -x c foo.c | sort
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63926 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/Preprocessor.cpp')
-rw-r--r-- | lib/Lex/Preprocessor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp index 9b5965ccc5..984cf1aab8 100644 --- a/lib/Lex/Preprocessor.cpp +++ b/lib/Lex/Preprocessor.cpp @@ -13,7 +13,7 @@ // // Options to support: // -H - Print the name of each header file used. -// -d[MDNI] - Dump various things. +// -d[DNI] - Dump various things. // -fworking-directory - #line's with preprocessor's working dir. // -fpreprocessed // -dependency-file,-M,-MM,-MF,-MG,-MP,-MT,-MQ,-MD,-MMD |