Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: src/IceTypes.h

Issue 1341423002: Reflow comments to use the full width. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix spelling and rebase Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceTypeConverter.h ('k') | src/IceTypes.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceTypes.h
diff --git a/src/IceTypes.h b/src/IceTypes.h
index 3c87f6888fde25dbb5a4af47bf9f786f12a1f5e0..f176e9bf92cdb681af778f76871334599b044ecc 100644
--- a/src/IceTypes.h
+++ b/src/IceTypes.h
@@ -8,9 +8,8 @@
//===----------------------------------------------------------------------===//
///
/// \file
-/// This file declares a few properties of the primitive types allowed
-/// in Subzero. Every Subzero source file is expected to include
-/// IceTypes.h.
+/// This file declares a few properties of the primitive types allowed in
+/// Subzero. Every Subzero source file is expected to include IceTypes.h.
///
//===----------------------------------------------------------------------===//
@@ -42,8 +41,8 @@ inline Ostream &operator<<(Ostream &Stream, TargetArch Arch) {
return Stream << targetArchString(Arch);
}
-/// The list of all target instruction sets. Individual targets will
-/// map this to include only what is valid for the target.
+/// The list of all target instruction sets. Individual targets will map this to
+/// include only what is valid for the target.
enum TargetInstructionSet {
// Represents baseline that can be assumed for a target (usually "Begin").
BaseInstructionSet,
@@ -97,8 +96,8 @@ inline bool isByteSizedType(Type Ty) {
return result;
}
-/// Check if Ty is byte sized and specifically i8. Assert that it's not
-/// byte sized due to being an i1.
+/// Check if Ty is byte sized and specifically i8. Assert that it's not byte
+/// sized due to being an i1.
inline bool isByteSizedArithType(Type Ty) {
assert(Ty != IceType_i1);
return Ty == IceType_i8;
@@ -131,8 +130,8 @@ class FuncSigType {
public:
using ArgListType = std::vector<Type>;
- /// Creates a function signature type with the given return type.
- /// Parameter types should be added using calls to appendArgType.
+ /// Creates a function signature type with the given return type. Parameter
+ /// types should be added using calls to appendArgType.
FuncSigType() = default;
FuncSigType(const FuncSigType &Ty) = default;
« no previous file with comments | « src/IceTypeConverter.h ('k') | src/IceTypes.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698