[cfe-commits] r114735 - /cfe/trunk/docs/tools/clang.pod

Douglas Gregor dgregor at apple.com
Fri Sep 24 10:26:14 PDT 2010


Author: dgregor
Date: Fri Sep 24 12:26:14 2010
New Revision: 114735

URL: http://llvm.org/viewvc/llvm-project?rev=114735&view=rev
Log:
Update Clang man page to say a little bit more about C++

Modified:
    cfe/trunk/docs/tools/clang.pod

Modified: cfe/trunk/docs/tools/clang.pod
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/tools/clang.pod?rev=114735&r1=114734&r2=114735&view=diff
==============================================================================
--- cfe/trunk/docs/tools/clang.pod (original)
+++ cfe/trunk/docs/tools/clang.pod Fri Sep 24 12:26:14 2010
@@ -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 @@
 
 =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 @@
 
 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>
 





More information about the cfe-commits mailing list