aboutsummaryrefslogtreecommitdiff
path: root/lib/Frontend/PCHReader.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-04-20 19:12:28 +0000
committerChris Lattner <sabre@nondot.org>2009-04-20 19:12:28 +0000
commitcf2a7211b4785068c7efa836baab90b198a4d2a6 (patch)
tree44b79c137e5b35c2f938af8911480d280fae8589 /lib/Frontend/PCHReader.cpp
parent5994d31a8c613c8902324b5ea2ec09ee7024d14a (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/PCHReader.cpp')
-rw-r--r--lib/Frontend/PCHReader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/PCHReader.cpp b/lib/Frontend/PCHReader.cpp
index 391937b923..3975747b52 100644
--- a/lib/Frontend/PCHReader.cpp
+++ b/lib/Frontend/PCHReader.cpp
@@ -2186,7 +2186,7 @@ Attr *PCHReader::ReadAttributes() {
break;
}
- SIMPLE_ATTR(GNUCInline);
+ SIMPLE_ATTR(GNUInline);
case Attr::IBOutletKind:
New = ::new (Context) IBOutletAttr();