commit | 3ce0de611e7f754df9ba9f883333eef8399f7af7 | [log] [tgz] |
---|---|---|
author | Aaron Ballman <aaron@aaronballman.com> | Sat May 04 16:58:37 2013 +0000 |
committer | Aaron Ballman <aaron@aaronballman.com> | Sat May 04 16:58:37 2013 +0000 |
tree | 5502c537d299af236edc33a4db45460472b55c17 | |
parent | f9734241b141ad9c19969bab9b56dd4246e35e7d [diff] [blame] |
Properly parsing __declspec(safebuffers), though there is no semantic hookup. For more information about safebuffers, see MSDN: http://msdn.microsoft.com/en-us/library/dd778695(v=vs.110).aspx git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181123 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Parse/ParseDecl.cpp b/lib/Parse/ParseDecl.cpp index a4cec8c..6a87b78 100644 --- a/lib/Parse/ParseDecl.cpp +++ b/lib/Parse/ParseDecl.cpp
@@ -374,6 +374,7 @@ .Case("novtable", true) .Case("selectany", true) .Case("thread", true) + .Case("safebuffers", true ) .Default(false); }