aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/iBranch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/VMCore/iBranch.cpp')
-rw-r--r--lib/VMCore/iBranch.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/VMCore/iBranch.cpp b/lib/VMCore/iBranch.cpp
index bcba714..59dc303 100644
--- a/lib/VMCore/iBranch.cpp
+++ b/lib/VMCore/iBranch.cpp
@@ -16,6 +16,8 @@
#include "llvm/BasicBlock.h"
#include "llvm/Type.h"
+namespace llvm {
+
BranchInst::BranchInst(BasicBlock *True, BasicBlock *False, Value *Cond,
Instruction *InsertBefore)
: TerminatorInst(Instruction::Br, InsertBefore) {
@@ -49,3 +51,5 @@ BranchInst::BranchInst(const BranchInst &BI) : TerminatorInst(Instruction::Br) {
Operands.push_back(Use(BI.Operands[2], this));
}
}
+
+} // End llvm namespace