From: Chris Lattner Date: Sun, 26 Jul 2009 06:51:27 +0000 (+0000) Subject: Make the kind actually be private. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=37939c910fe17eef328736b3c09b6cd262095a87;p=oota-llvm.git Make the kind actually be private. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77139 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index 89cb5ae692d..dc5d9419429 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -124,10 +124,10 @@ namespace llvm { }; - //private: - Kind K : 8; // This is private. + private: + Kind K : 8; - //public: + public: bool isText() const { return K == Text; @@ -183,7 +183,8 @@ namespace llvm { } static SectionKind get(Kind K) { - SectionKind Res = { K }; + SectionKind Res; + Res.K = K; return Res; } };