diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-03-07 19:04:12 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-03-07 19:04:12 +0000 |
commit | 24a542fd5c7e69fa8c15a2cd0c78cb558b952619 (patch) | |
tree | 6e06a2d24971faff13c1e9fe270ad8fe35e14a0f /llvm/lib/Target/PowerPC/PPCSubtarget.h | |
parent | 49f359aea4b1d625946ca21c4a4cee8d8272dbc1 (diff) | |
download | bcm5719-llvm-24a542fd5c7e69fa8c15a2cd0c78cb558b952619.tar.gz bcm5719-llvm-24a542fd5c7e69fa8c15a2cd0c78cb558b952619.zip |
Don't avoid cfi instructions on the bg/p.
The integrated assembler now works for ppc. Since this was the last use of the
bg/p predicate and Hal says that it is now dead, drop the predicate too.
llvm-svn: 203269
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCSubtarget.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCSubtarget.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCSubtarget.h b/llvm/lib/Target/PowerPC/PPCSubtarget.h index a9159fbc73d..e9f83101890 100644 --- a/llvm/lib/Target/PowerPC/PPCSubtarget.h +++ b/llvm/lib/Target/PowerPC/PPCSubtarget.h @@ -190,8 +190,6 @@ public: /// isDarwin - True if this is any darwin platform. bool isDarwin() const { return TargetTriple.isMacOSX(); } - /// isBGP - True if this is a BG/P platform. - bool isBGP() const { return TargetTriple.getVendor() == Triple::BGP; } /// isBGQ - True if this is a BG/Q platform. bool isBGQ() const { return TargetTriple.getVendor() == Triple::BGQ; } |