aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-03-11 23:53:51 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-03-11 23:53:51 +0000
commitec85af16a0a5ad69e79fde0c048886b2c615dd2e (patch)
tree3d47ba73f951d16e61b5db391544f453e895991c /lib
parentb8bda131403066c710c5b7d7dfdf0f930b722c77 (diff)
downloadexternal_llvm-ec85af16a0a5ad69e79fde0c048886b2c615dd2e.zip
external_llvm-ec85af16a0a5ad69e79fde0c048886b2c615dd2e.tar.gz
external_llvm-ec85af16a0a5ad69e79fde0c048886b2c615dd2e.tar.bz2
Fix indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12298 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/VMCore/iMemory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VMCore/iMemory.cpp b/lib/VMCore/iMemory.cpp
index 917692e..7c8f665 100644
--- a/lib/VMCore/iMemory.cpp
+++ b/lib/VMCore/iMemory.cpp
@@ -116,8 +116,8 @@ static inline const Type *checkType(const Type *Ty) {
GetElementPtrInst::GetElementPtrInst(Value *Ptr, const std::vector<Value*> &Idx,
const std::string &Name, Instruction *InBe)
: Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),
- Idx, true))),
- GetElementPtr, Name, InBe) {
+ Idx, true))),
+ GetElementPtr, Name, InBe) {
Operands.reserve(1+Idx.size());
Operands.push_back(Use(Ptr, this));