summaryrefslogtreecommitdiff
path: root/lib/AsmParser/Parser.cpp
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-10-23 18:00:34 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-10-23 18:00:34 +0000
commit1913848e337c982f7997fc5fe2a722e514315308 (patch)
treee684c2691d0c2eaa17aec01e75840b14423ee449 /lib/AsmParser/Parser.cpp
parentff5bf9c62bb1d604ea9ad95f0687ac1592fa774a (diff)
downloadllvm-1913848e337c982f7997fc5fe2a722e514315308.tar.gz
llvm-1913848e337c982f7997fc5fe2a722e514315308.tar.bz2
llvm-1913848e337c982f7997fc5fe2a722e514315308.tar.xz
* Eliminate `using' directive
* Order #includes as per style guide git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9429 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/Parser.cpp')
-rw-r--r--lib/AsmParser/Parser.cpp19
1 files changed, 10 insertions, 9 deletions
diff --git a/lib/AsmParser/Parser.cpp b/lib/AsmParser/Parser.cpp
index c6caa45473..e8a7bdbbb9 100644
--- a/lib/AsmParser/Parser.cpp
+++ b/lib/AsmParser/Parser.cpp
@@ -11,15 +11,14 @@
//
//===------------------------------------------------------------------------===
-#include "llvm/Analysis/Verifier.h"
-#include "llvm/Module.h"
#include "ParserInternals.h"
-using std::string;
+#include "llvm/Module.h"
+#include "llvm/Analysis/Verifier.h"
// The useful interface defined by this file... Parse an ASCII file, and return
// the internal representation in a nice slice'n'dice'able representation.
//
-Module *ParseAssemblyFile(const string &Filename) { // throw (ParseException)
+Module *ParseAssemblyFile(const std::string &Filename) {
FILE *F = stdin;
if (Filename != "-") {
@@ -49,7 +48,8 @@ Module *ParseAssemblyFile(const string &Filename) { // throw (ParseException)
//===------------------------------------------------------------------------===
-ParseException::ParseException(const string &filename, const string &message,
+ParseException::ParseException(const std::string &filename,
+ const std::string &message,
int lineNo, int colNo)
: Filename(filename), Message(message) {
LineNo = lineNo; ColumnNo = colNo;
@@ -61,8 +61,9 @@ ParseException::ParseException(const ParseException &E)
ColumnNo = E.ColumnNo;
}
-const string ParseException::getMessage() const { // Includes info from options
- string Result;
+// Includes info from options
+const std::string ParseException::getMessage() const {
+ std::string Result;
char Buffer[10];
if (Filename == "-")
@@ -72,10 +73,10 @@ const string ParseException::getMessage() const { // Includes info from options
if (LineNo != -1) {
sprintf(Buffer, "%d", LineNo);
- Result += string(":") + Buffer;
+ Result += std::string(":") + Buffer;
if (ColumnNo != -1) {
sprintf(Buffer, "%d", ColumnNo);
- Result += string(",") + Buffer;
+ Result += std::string(",") + Buffer;
}
}