Skip to content

Commit 9cb27e9

Browse files
Correct FreeBSD target info, fixing PR4514.
Patch by Roman Divacky. llvm-svn: 75003
1 parent 3f1e240 commit 9cb27e9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

clang/lib/Basic/Targets.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,9 @@ class FreeBSDTargetInfo : public OSTargetInfo<Target> {
297297
}
298298
public:
299299
FreeBSDTargetInfo(const std::string &triple)
300-
: OSTargetInfo<Target>(triple) {}
300+
: OSTargetInfo<Target>(triple) {
301+
this->UserLabelPrefix = "";
302+
}
301303
};
302304

303305
// Linux target

0 commit comments

Comments
 (0)