diff options
author | Owen Anderson <resistor@mac.com> | 2009-07-06 23:00:19 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-07-06 23:00:19 +0000 |
commit | 38264b155441a07cfa7bab19829d34a83f080c7b (patch) | |
tree | 1ede0f4bc4a0a43460de2150fd501356b02224af /llvm/lib/VMCore/BasicBlock.cpp | |
parent | 0ee2913215f1716d8d9112305a391d02f6762103 (diff) | |
download | bcm5719-llvm-38264b155441a07cfa7bab19829d34a83f080c7b.tar.gz bcm5719-llvm-38264b155441a07cfa7bab19829d34a83f080c7b.zip |
"LLVMContext* " --> "LLVMContext *"
llvm-svn: 74878
Diffstat (limited to 'llvm/lib/VMCore/BasicBlock.cpp')
-rw-r--r-- | llvm/lib/VMCore/BasicBlock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/BasicBlock.cpp b/llvm/lib/VMCore/BasicBlock.cpp index f39e1caa10c..ad54f158ef3 100644 --- a/llvm/lib/VMCore/BasicBlock.cpp +++ b/llvm/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; } |