From 51c7a789b17d708617946d5f9fde0a2e4feaefd1 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Fri, 24 Sep 2010 17:26:14 +0000 Subject: [PATCH] Update Clang man page to say a little bit more about C++ git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@114735 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/tools/clang.pod | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/tools/clang.pod b/docs/tools/clang.pod index 8a43731abf..a056be77ef 100644 --- a/docs/tools/clang.pod +++ b/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 [B<-c>|B<-S>|B<-E>] B<-std=>I B<-g> =head1 DESCRIPTION -B is a C and Objective-C compiler which encompasses preprocessing, +B 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 -- 2.40.0