diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-09-24 17:26:14 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-09-24 17:26:14 +0000 |
commit | 3aa045491fba7750e18c0ec73f35d4356d5003ea (patch) | |
tree | 217c4a2f1f23505c35eb18d715ef24463460a7d6 /clang | |
parent | ce17f72c382cd283ffa2eff90ea9ece875ef55f0 (diff) | |
download | bcm5719-llvm-3aa045491fba7750e18c0ec73f35d4356d5003ea.tar.gz bcm5719-llvm-3aa045491fba7750e18c0ec73f35d4356d5003ea.zip |
Update Clang man page to say a little bit more about C++
llvm-svn: 114735
Diffstat (limited to 'clang')
-rw-r--r-- | clang/docs/tools/clang.pod | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/clang/docs/tools/clang.pod b/clang/docs/tools/clang.pod index 8a43731abfe..a056be77ef6 100644 --- a/clang/docs/tools/clang.pod +++ b/clang/docs/tools/clang.pod @@ -2,7 +2,7 @@ =head1 NAME -clang - the Clang C and Objective-C compiler +clang - the Clang C, C++, and Objective-C compiler =head1 SYNOPSIS @@ -19,7 +19,7 @@ B<clang> [B<-c>|B<-S>|B<-E>] B<-std=>I<standard> B<-g> =head1 DESCRIPTION -B<clang> is a C and Objective-C compiler which encompasses preprocessing, +B<clang> is a C, C++, and Objective-C compiler which encompasses preprocessing, parsing, optimization, code generation, assembly, and linking. Depending on which high-level mode setting is passed, Clang will stop before doing a full link. While Clang is highly integrated, it is important to understand the @@ -38,7 +38,8 @@ the other tools. This stage handles tokenization of the input source file, macro expansion, #include expansion and handling of other preprocessor directives. The output of -this stage is typically called a ".i" (for C) or ".mi" (for Objective-C) file. +this stage is typically called a ".i" (for C), ".ii" (for C++), ".mi" (for +Objective-C) , or ".mii" (for Objective-C++) file. =item B<Parsing and Semantic Analysis> |