Skip to content

Commit 8e8eae6

Browse files
committed
use proper namespace qualifications
llvm-svn: 55259
1 parent 2ecf455 commit 8e8eae6

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

llvm/examples/BrainF/BrainF.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include "llvm/Constants.h"
2828
#include "llvm/Intrinsics.h"
2929
#include "llvm/ADT/STLExtras.h"
30-
30+
#include <iostream>
3131
using namespace llvm;
3232

3333
//Set the constants for naming
@@ -291,7 +291,7 @@ void BrainF::readloop(PHINode *phi, BasicBlock *oldbb, BasicBlock *testbb) {
291291
break;
292292

293293
default:
294-
cerr<<"Error: Unknown symbol.\n";
294+
std::cerr << "Error: Unknown symbol.\n";
295295
abort();
296296
break;
297297
}
@@ -404,7 +404,7 @@ void BrainF::readloop(PHINode *phi, BasicBlock *oldbb, BasicBlock *testbb) {
404404

405405
if (cursym == SYM_ENDLOOP) {
406406
if (!phi) {
407-
cerr<<"Error: Extra ']'\n";
407+
std::cerr << "Error: Extra ']'\n";
408408
abort();
409409
}
410410

@@ -450,7 +450,7 @@ void BrainF::readloop(PHINode *phi, BasicBlock *oldbb, BasicBlock *testbb) {
450450
builder->CreateBr(endbb);
451451

452452
if (phi) {
453-
cerr<<"Error: Missing ']'\n";
453+
std::cerr << "Error: Missing ']'\n";
454454
abort();
455455
}
456456
}

llvm/examples/BrainF/BrainFDriver.cpp

+4-5
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
#include "llvm/Support/ManagedStatic.h"
3737
#include <fstream>
3838
#include <iostream>
39-
4039
using namespace llvm;
4140

4241
//Command line options
@@ -87,8 +86,8 @@ int main(int argc, char **argv) {
8786
cl::ParseCommandLineOptions(argc, argv, " BrainF compiler\n");
8887

8988
if (InputFilename == "") {
90-
cerr<<"Error: You must specify the filename of the program to "
91-
"be compiled. Use --help to see the options.\n";
89+
std::cerr<<"Error: You must specify the filename of the program to "
90+
"be compiled. Use --help to see the options.\n";
9291
abort();
9392
}
9493

@@ -130,13 +129,13 @@ int main(int argc, char **argv) {
130129

131130
//Verify generated code
132131
if (verifyModule(*mod)) {
133-
cerr<<"Error: module failed verification. This shouldn't happen.\n";
132+
std::cerr<<"Error: module failed verification. This shouldn't happen.\n";
134133
abort();
135134
}
136135

137136
//Write it out
138137
if (JIT) {
139-
cout<<"------- Running JIT -------\n";
138+
std::cout << "------- Running JIT -------\n";
140139
ExistingModuleProvider *mp = new ExistingModuleProvider(mod);
141140
ExecutionEngine *ee = ExecutionEngine::create(mp, false);
142141
std::vector<GenericValue> args;

0 commit comments

Comments
 (0)