@@ -2050,7 +2050,7 @@ class CondVariant<bits<4> ccmaskin, string suffixin, bit alternatein,
20502050 bit alternate = alternatein;
20512051
20522052 // Whether this needs be to restricted to a specific dialect.
2053- // Valid values are "att " and "hlasm", which when passed in
2053+ // Valid values are "gnu " and "hlasm", which when passed in
20542054 // will set AsmVariantName.
20552055 string asmvariant = asmvariantin;
20562056}
@@ -2063,20 +2063,20 @@ def CondAlways : CondVariant<15, "", 0>;
20632063def CondVariantO : CondVariant<1, "o", 0>;
20642064def CondVariantH : CondVariant<2, "h", 0>;
20652065def CondVariantP : CondVariant<2, "p", 1>;
2066- def CondVariantNLE : CondVariant<3, "nle", 0, "att ">;
2066+ def CondVariantNLE : CondVariant<3, "nle", 0, "gnu ">;
20672067def CondVariantL : CondVariant<4, "l", 0>;
20682068def CondVariantM : CondVariant<4, "m", 1>;
2069- def CondVariantNHE : CondVariant<5, "nhe", 0, "att ">;
2070- def CondVariantLH : CondVariant<6, "lh", 0, "att ">;
2069+ def CondVariantNHE : CondVariant<5, "nhe", 0, "gnu ">;
2070+ def CondVariantLH : CondVariant<6, "lh", 0, "gnu ">;
20712071def CondVariantNE : CondVariant<7, "ne", 0>;
20722072def CondVariantNZ : CondVariant<7, "nz", 1>;
20732073def CondVariantE : CondVariant<8, "e", 0>;
20742074def CondVariantZ : CondVariant<8, "z", 1>;
2075- def CondVariantNLH : CondVariant<9, "nlh", 0, "att ">;
2076- def CondVariantHE : CondVariant<10, "he", 0, "att ">;
2075+ def CondVariantNLH : CondVariant<9, "nlh", 0, "gnu ">;
2076+ def CondVariantHE : CondVariant<10, "he", 0, "gnu ">;
20772077def CondVariantNL : CondVariant<11, "nl", 0>;
20782078def CondVariantNM : CondVariant<11, "nm", 1>;
2079- def CondVariantLE : CondVariant<12, "le", 0, "att ">;
2079+ def CondVariantLE : CondVariant<12, "le", 0, "gnu ">;
20802080def CondVariantNH : CondVariant<13, "nh", 0>;
20812081def CondVariantNP : CondVariant<13, "np", 1>;
20822082def CondVariantNO : CondVariant<14, "no", 0>;
@@ -2093,16 +2093,16 @@ class CV<string name>
20932093// and that the low bit of the mask is therefore always 0. This means
20942094// that each condition has two names. Conditions "o" and "no" are not used.
20952095def IntCondVariantH : CondVariant<2, "h", 0>;
2096- def IntCondVariantNLE : CondVariant<2, "nle", 1, "att ">;
2096+ def IntCondVariantNLE : CondVariant<2, "nle", 1, "gnu ">;
20972097def IntCondVariantL : CondVariant<4, "l", 0>;
2098- def IntCondVariantNHE : CondVariant<4, "nhe", 1, "att ">;
2099- def IntCondVariantLH : CondVariant<6, "lh", 0, "att ">;
2098+ def IntCondVariantNHE : CondVariant<4, "nhe", 1, "gnu ">;
2099+ def IntCondVariantLH : CondVariant<6, "lh", 0, "gnu ">;
21002100def IntCondVariantNE : CondVariant<6, "ne", 1>;
21012101def IntCondVariantE : CondVariant<8, "e", 0>;
2102- def IntCondVariantNLH : CondVariant<8, "nlh", 1, "att ">;
2103- def IntCondVariantHE : CondVariant<10, "he", 0, "att ">;
2102+ def IntCondVariantNLH : CondVariant<8, "nlh", 1, "gnu ">;
2103+ def IntCondVariantHE : CondVariant<10, "he", 0, "gnu ">;
21042104def IntCondVariantNL : CondVariant<10, "nl", 1>;
2105- def IntCondVariantLE : CondVariant<12, "le", 0, "att ">;
2105+ def IntCondVariantLE : CondVariant<12, "le", 0, "gnu ">;
21062106def IntCondVariantNH : CondVariant<12, "nh", 1>;
21072107
21082108// A helper class to look up one of the above by name.
0 commit comments