aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Reader/ReaderInternals.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-11-26 18:56:10 +0000
committerChris Lattner <sabre@nondot.org>2001-11-26 18:56:10 +0000
commitd23b1d31c0a4d46f3ee78cd5393bea571c29888c (patch)
tree2ed914aaf3d642bc80863ac8a0b99352db327c7e /lib/Bytecode/Reader/ReaderInternals.h
parentdda719665ba2ffd2eb1c32a0d2daa3921448db7c (diff)
Implement internal method support
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1374 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Reader/ReaderInternals.h')
-rw-r--r--lib/Bytecode/Reader/ReaderInternals.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bytecode/Reader/ReaderInternals.h b/lib/Bytecode/Reader/ReaderInternals.h
index 50eed19393..fb34169d79 100644
--- a/lib/Bytecode/Reader/ReaderInternals.h
+++ b/lib/Bytecode/Reader/ReaderInternals.h
@@ -149,7 +149,7 @@ struct BBPlaceHolderHelper : public BasicBlock {
struct MethPlaceHolderHelper : public Method {
MethPlaceHolderHelper(const Type *Ty)
- : Method(cast<const MethodType>(Ty)) {
+ : Method(cast<const MethodType>(Ty), true) {
}
};