From 07cf79ef537caff6d39145f190a28a336e629b6f Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Mon, 6 Jul 2009 23:00:19 +0000 Subject: "LLVMContext* " --> "LLVMContext *" git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74878 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/BasicBlock.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/VMCore/BasicBlock.cpp') diff --git a/lib/VMCore/BasicBlock.cpp b/lib/VMCore/BasicBlock.cpp index f39e1ca..ad54f15 100644 --- a/lib/VMCore/BasicBlock.cpp +++ b/lib/VMCore/BasicBlock.cpp @@ -29,7 +29,7 @@ ValueSymbolTable *BasicBlock::getValueSymbolTable() { return 0; } -LLVMContext* BasicBlock::getContext() const { +LLVMContext *BasicBlock::getContext() const { return Parent ? Parent->getContext() : 0; } -- cgit v1.1