[llvm-commits] [llvm] r117580 - /llvm/trunk/include/llvm/System/Path.h
Mikhail Glushenkov
foldr at codedgers.com
Thu Oct 28 12:32:47 PDT 2010
Author: foldr
Date: Thu Oct 28 14:32:47 2010
New Revision: 117580
URL: http://llvm.org/viewvc/llvm-project?rev=117580&view=rev
Log:
80-col violations.
Modified:
llvm/trunk/include/llvm/System/Path.h
Modified: llvm/trunk/include/llvm/System/Path.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/System/Path.h?rev=117580&r1=117579&r2=117580&view=diff
==============================================================================
--- llvm/trunk/include/llvm/System/Path.h (original)
+++ llvm/trunk/include/llvm/System/Path.h Thu Oct 28 14:32:47 2010
@@ -345,8 +345,8 @@
/// This function determines if the path name in the object references a
/// native object file by looking at it's magic number. The term object
/// file is defined as "an organized collection of separate, named
- /// sequences of binary data." This covers the obvious file formats such as
- /// COFF and ELF, but it also includes llvm ir bitcode, archives,
+ /// sequences of binary data." This covers the obvious file formats such
+ /// as COFF and ELF, but it also includes llvm ir bitcode, archives,
/// libraries, etc...
/// @returns true if the file starts with the magic number for an object
/// file.
@@ -385,9 +385,9 @@
/// in the file system.
bool canWrite() const;
- /// This function checks that what we're trying to work only on a regular file.
- /// Check for things like /dev/null, any block special file,
- /// or other things that aren't "regular" regular files.
+ /// This function checks that what we're trying to work only on a regular
+ /// file. Check for things like /dev/null, any block special file, or
+ /// other things that aren't "regular" regular files.
/// @returns true if the file is S_ISREG.
/// @brief Determines if the file is a regular file
bool isRegularFile() const;
More information about the llvm-commits
mailing list