aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaDeclAttr.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-01-07 20:01:57 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-01-07 20:01:57 +0000
commit0b1de54fd69da1424084588196883ad4c0a57a57 (patch)
treea4e85e806118b01f9c79cbfd71fc4c8af7f1e1bb /lib/Sema/SemaDeclAttr.cpp
parent8e721b714a92de803000c65fb8a57a1d8a810322 (diff)
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
Diffstat (limited to 'lib/Sema/SemaDeclAttr.cpp')
-rw-r--r--lib/Sema/SemaDeclAttr.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}