Displaying 1 result from an estimated 1 matches for "hasmul".
2016 Mar 05
2
Enable / Disable a processor feature
I'm trying to enable/disable a target feature through clang.
Here is how my target looks like
// Esencia subtarget features
//===----------------------------------------------------------------------===//
def FeatureMul : SubtargetFeature<"mul", "HasMul", "true",
"Enable hardware multiplier">;
def FeatureDiv : SubtargetFeature<"div", "HasDiv", "true",
"Enable hardware divider">;
def FeatureCmov : Subtar...