From: Benjamin Kramer Date: Sun, 29 Sep 2013 19:39:02 +0000 (+0000) Subject: Remove an old workaround for a compiler that EOL'd years ago. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=67a25537491bb6f9eadf4016e10bbc9504b6b75d;p=oota-llvm.git Remove an old workaround for a compiler that EOL'd years ago. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191643 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index 13f5d4ecac5..8ec3b093416 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -942,13 +942,7 @@ public: class HandleSDNode : public SDNode { SDUse Op; public: - // FIXME: Remove the "noinline" attribute once is - // fixed. -#if __GNUC__==4 && __GNUC_MINOR__==2 && defined(__APPLE__) && !defined(__llvm__) - explicit __attribute__((__noinline__)) HandleSDNode(SDValue X) -#else explicit HandleSDNode(SDValue X) -#endif : SDNode(ISD::HANDLENODE, 0, DebugLoc(), getSDVTList(MVT::Other)) { InitOperands(&Op, X); }