Skip to content

Commit ae7bd24

Browse files
jdoerfertarsenm
andcommitted
Update llvm/lib/Transforms/IPO/AttributorAttributes.cpp
Co-authored-by: Matt Arsenault <[email protected]>
1 parent 6997f4f commit ae7bd24

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

llvm/lib/Transforms/IPO/AttributorAttributes.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10350,9 +10350,7 @@ struct AANoFPClassImpl : AANoFPClass {
1035010350
const std::string getAsStr(Attributor *A) const override {
1035110351
std::string Result = "nofpclass";
1035210352
raw_string_ostream OS(Result);
10353-
OS << getKnownNoFPClass();
10354-
OS << "/";
10355-
OS << getAssumedNoFPClass();
10353+
OS << getKnownNoFPClass() << '/' << getAssumedNoFPClass();
1035610354
return Result;
1035710355
}
1035810356

0 commit comments

Comments
 (0)