1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Make this hack more specific to the Apple gcc 4.2 non-LLVM compiler.

llvm-svn: 100556
This commit is contained in:
Bill Wendling 2010-04-06 20:07:21 +00:00
parent 370a3e553f
commit c1bbfced8f

View File

@ -1564,7 +1564,7 @@ class HandleSDNode : public SDNode {
public:
// FIXME: Remove the "noinline" attribute once <rdar://problem/5852746> is
// fixed.
#ifdef __GNUC__
#if __GNUC__==4 && __GNUC_MINOR__==2 && defined(__APPLE__) && !defined(__llvm__)
explicit __attribute__((__noinline__)) HandleSDNode(SDValue X)
#else
explicit HandleSDNode(SDValue X)