craig.topper created this revision. craig.topper added reviewers: simon_tatham, efriedma, miyuki, rnk. Herald added subscribers: dmgreen, kristof.beyls. craig.topper requested review of this revision. Herald added a project: clang.
The attributes string doesn't include 'f' or 'h'. I don't think any code looks at the header name without those. Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D111755 Files: clang/utils/TableGen/MveEmitter.cpp Index: clang/utils/TableGen/MveEmitter.cpp =================================================================== --- clang/utils/TableGen/MveEmitter.cpp +++ clang/utils/TableGen/MveEmitter.cpp @@ -1941,8 +1941,8 @@ void MveEmitter::EmitBuiltinDef(raw_ostream &OS) { for (const auto &kv : ACLEIntrinsics) { const ACLEIntrinsic &Int = *kv.second; - OS << "TARGET_HEADER_BUILTIN(__builtin_arm_mve_" << Int.fullName() - << ", \"\", \"n\", \"arm_mve.h\", ALL_LANGUAGES, \"\")\n"; + OS << "BUILTIN(__builtin_arm_mve_" << Int.fullName() + << ", \"\", \"n\")\n"; } std::set<std::string> ShortNamesSeen; @@ -2151,8 +2151,8 @@ if (kv.second->headerOnly()) continue; const ACLEIntrinsic &Int = *kv.second; - OS << "TARGET_HEADER_BUILTIN(__builtin_arm_cde_" << Int.fullName() - << ", \"\", \"ncU\", \"arm_cde.h\", ALL_LANGUAGES, \"\")\n"; + OS << "BUILTIN(__builtin_arm_cde_" << Int.fullName() + << ", \"\", \"ncU\")\n"; } }
Index: clang/utils/TableGen/MveEmitter.cpp =================================================================== --- clang/utils/TableGen/MveEmitter.cpp +++ clang/utils/TableGen/MveEmitter.cpp @@ -1941,8 +1941,8 @@ void MveEmitter::EmitBuiltinDef(raw_ostream &OS) { for (const auto &kv : ACLEIntrinsics) { const ACLEIntrinsic &Int = *kv.second; - OS << "TARGET_HEADER_BUILTIN(__builtin_arm_mve_" << Int.fullName() - << ", \"\", \"n\", \"arm_mve.h\", ALL_LANGUAGES, \"\")\n"; + OS << "BUILTIN(__builtin_arm_mve_" << Int.fullName() + << ", \"\", \"n\")\n"; } std::set<std::string> ShortNamesSeen; @@ -2151,8 +2151,8 @@ if (kv.second->headerOnly()) continue; const ACLEIntrinsic &Int = *kv.second; - OS << "TARGET_HEADER_BUILTIN(__builtin_arm_cde_" << Int.fullName() - << ", \"\", \"ncU\", \"arm_cde.h\", ALL_LANGUAGES, \"\")\n"; + OS << "BUILTIN(__builtin_arm_cde_" << Int.fullName() + << ", \"\", \"ncU\")\n"; } }
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits