Skip to content

Commit

Permalink
[PS4] Tighten up a triple check.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@288286 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
pogo59 committed Nov 30, 2016
1 parent e615914 commit 561ad76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Target/X86/X86Subtarget.h
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ class X86Subtarget final : public X86GenSubtargetInfo {
bool isTargetFreeBSD() const { return TargetTriple.isOSFreeBSD(); }
bool isTargetDragonFly() const { return TargetTriple.isOSDragonFly(); }
bool isTargetSolaris() const { return TargetTriple.isOSSolaris(); }
bool isTargetPS4() const { return TargetTriple.isPS4(); }
bool isTargetPS4() const { return TargetTriple.isPS4CPU(); }

bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
bool isTargetCOFF() const { return TargetTriple.isOSBinFormatCOFF(); }
Expand Down

0 comments on commit 561ad76

Please sign in to comment.