diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-20 19:12:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-20 19:12:28 +0000 |
commit | cf2a7211b4785068c7efa836baab90b198a4d2a6 (patch) | |
tree | 44b79c137e5b35c2f938af8911480d280fae8589 /lib/Frontend/PCHWriter.cpp | |
parent | 5994d31a8c613c8902324b5ea2ec09ee7024d14a (diff) |
the __gnuc_inline__ attribute is actually named __gnu_inline__,
PR4023
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69618 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHWriter.cpp')
-rw-r--r-- | lib/Frontend/PCHWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/PCHWriter.cpp b/lib/Frontend/PCHWriter.cpp index afe77aebf8..9f6c4c1be0 100644 --- a/lib/Frontend/PCHWriter.cpp +++ b/lib/Frontend/PCHWriter.cpp @@ -1696,7 +1696,7 @@ void PCHWriter::WriteAttributeRecord(const Attr *Attr) { break; } - case Attr::GNUCInline: + case Attr::GNUInline: case Attr::IBOutletKind: case Attr::NoReturn: case Attr::NoThrow: |