From 0b1de54fd69da1424084588196883ad4c0a57a57 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Mon, 7 Jan 2013 20:01:57 +0000 Subject: [PATCH] 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 --- lib/Sema/SemaDeclAttr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.40.0