summaryrefslogtreecommitdiffstats
path: root/llvm/lib/AsmParser/ParserInternals.h
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2005-04-21 21:10:11 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2005-04-21 21:10:11 +0000
commit13f332cd3fcc00c7867db24784a3018aada46835 (patch)
tree0636b022b34313f22f8e36b841b935a40e9c3018 /llvm/lib/AsmParser/ParserInternals.h
parent95e43ae1621bdbad248c79d3d5ace8165a68b2a0 (diff)
downloadbcm5719-llvm-13f332cd3fcc00c7867db24784a3018aada46835.tar.gz
bcm5719-llvm-13f332cd3fcc00c7867db24784a3018aada46835.zip
* Remove trailing whitespace
* Convert tabs to spaces llvm-svn: 21415
Diffstat (limited to 'llvm/lib/AsmParser/ParserInternals.h')
-rw-r--r--llvm/lib/AsmParser/ParserInternals.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/lib/AsmParser/ParserInternals.h b/llvm/lib/AsmParser/ParserInternals.h
index 98ea0341c69..20961357c88 100644
--- a/llvm/lib/AsmParser/ParserInternals.h
+++ b/llvm/lib/AsmParser/ParserInternals.h
@@ -1,13 +1,13 @@
//===-- ParserInternals.h - Definitions internal to the parser --*- C++ -*-===//
-//
+//
// The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
-//
+//
//===----------------------------------------------------------------------===//
//
-// This header file defines the various variables that are shared among the
+// This header file defines the various variables that are shared among the
// different components of the parser...
//
//===----------------------------------------------------------------------===//
@@ -52,21 +52,21 @@ char *UnEscapeLexed(char *Buffer, bool AllowNull = false);
// ThrowException - Wrapper around the ParseException class that automatically
// fills in file line number and column number and options info.
//
-// This also helps me because I keep typing 'throw new ParseException' instead
+// This also helps me because I keep typing 'throw new ParseException' instead
// of just 'throw ParseException'... sigh...
//
static inline void ThrowException(const std::string &message,
- int LineNo = -1) {
+ int LineNo = -1) {
if (LineNo == -1) LineNo = llvmAsmlineno;
// TODO: column number in exception
throw ParseException(CurFilename, message, LineNo);
}
// ValID - Represents a reference of a definition of some sort. This may either
-// be a numeric reference or a symbolic (%var) reference. This is just a
+// be a numeric reference or a symbolic (%var) reference. This is just a
// discriminated union.
//
-// Note that I can't implement this class in a straight forward manner with
+// Note that I can't implement this class in a straight forward manner with
// constructors and stuff because it goes in a union.
//
struct ValID {
OpenPOWER on IntegriCloud