From 9bb4ea03be6fbf2fadf4727e6fad95782cbbf25b Mon Sep 17 00:00:00 2001 From: Gordon Henriksen Date: Thu, 18 Oct 2007 11:31:21 +0000 Subject: [PATCH] Missing 'public' keyword. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43121 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/TargetMachineRegistry.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Target/TargetMachineRegistry.h b/include/llvm/Target/TargetMachineRegistry.h index a8df7b3f826..26c4386219f 100644 --- a/include/llvm/Target/TargetMachineRegistry.h +++ b/include/llvm/Target/TargetMachineRegistry.h @@ -48,7 +48,7 @@ namespace llvm { static const char *descof(const entry &Entry) { return Entry.ShortDesc; } }; - struct TargetMachineRegistry : Registry { + struct TargetMachineRegistry : public Registry { /// getClosestStaticTargetForModule - Given an LLVM module, pick the best /// target that is compatible with the module. If no close target can be /// found, this returns null and sets the Error string to a reason.