From: Rafael Espindola Date: Mon, 7 Jan 2013 20:01:57 +0000 (+0000) Subject: Use getter. Fixes the build from a bad merge. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0b1de54fd69da1424084588196883ad4c0a57a57;p=clang Use getter. Fixes the build from a bad merge. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171782 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaDeclAttr.cpp b/lib/Sema/SemaDeclAttr.cpp index accea53bb8..b62a4e86b1 100644 --- a/lib/Sema/SemaDeclAttr.cpp +++ b/lib/Sema/SemaDeclAttr.cpp @@ -3272,7 +3272,7 @@ static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) { break; case 11: if (Str == "unwind_word") - DestWidth = S.Context.Target.getUnwindWordWidth(); + DestWidth = S.Context.getTargetInfo().getUnwindWordWidth(); break; }