//===--- ARC.cpp - Implement ARC target feature support -------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file implements ARC TargetInfo objects. // //===----------------------------------------------------------------------===// #include "ARC.h" #include "clang/Basic/Builtins.h" #include "clang/Basic/MacroBuilder.h" #include "clang/Basic/TargetBuiltins.h" using namespace clang; using namespace clang::targets; void ARCTargetInfo::getTargetDefines(const LangOptions &Opts, MacroBuilder &Builder) const { Builder.defineMacro("__arc__"); } 9.3'>lockdoc-9.3 NetBSD fork for lockdoc analysismerlin@scholz.ruhr
summaryrefslogtreecommitdiff
path: root/sys/dev/cadence
AgeCommit message (Expand)Author
2017-05-23Apply deferred if_start to more driversozaki-r
2016-12-15Move bpf_mtap and if_ipackets++ on Rx of each driver to percpuq if_inputozaki-r
2016-06-10Introduce m_set_rcvif and m_reset_rcvifozaki-r
2016-02-09Introduce softint-based if_inputozaki-r
2015-08-24Add hardware checksumming support.rjs
2015-08-24Fix logic for setting multicast addresses.rjs
2015-08-24Whitespace.rjs
2015-08-24printf -> aprint.rjs
2015-08-13Add gem versions of collision counters.rjs
2015-05-20Remove leftover use of AF_NS and NS optionozaki-r
2015-01-23Initial Zynq (Xilinx) supporthkenken