[cfe-commits] r171782 - /cfe/trunk/lib/Sema/SemaDeclAttr.cpp

Rafael Espindola rafael.espindola at gmail.com
Mon Jan 7 12:01:58 PST 2013


Author: rafael
Date: Mon Jan  7 14:01:57 2013
New Revision: 171782

URL: http://llvm.org/viewvc/llvm-project?rev=171782&view=rev
Log:
Use getter. Fixes the build from a bad merge.

Modified:
    cfe/trunk/lib/Sema/SemaDeclAttr.cpp

Modified: cfe/trunk/lib/Sema/SemaDeclAttr.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaDeclAttr.cpp?rev=171782&r1=171781&r2=171782&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaDeclAttr.cpp (original)
+++ cfe/trunk/lib/Sema/SemaDeclAttr.cpp Mon Jan  7 14:01:57 2013
@@ -3272,7 +3272,7 @@
     break;
   case 11:
     if (Str == "unwind_word")
-      DestWidth = S.Context.Target.getUnwindWordWidth();
+      DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
     break;
   }
 





More information about the cfe-commits mailing list