diff options
author | Stefan Pintilie <stefanp@ca.ibm.com> | 2019-11-27 12:50:23 -0600 |
---|---|---|
committer | Stefan Pintilie <stefanp@ca.ibm.com> | 2019-11-27 14:30:06 -0600 |
commit | dcceab1a0ace424ba4877f53c4c69433e53f1f3f (patch) | |
tree | 0e80d5e03adbf0f2f38e55af4d3ffc05e574b7e7 /llvm/lib/Target/PowerPC/PPCSubtarget.h | |
parent | f584f04dab69ab15c8942753a145f0c6e7693bcc (diff) | |
download | bcm5719-llvm-dcceab1a0ace424ba4877f53c4c69433e53f1f3f.tar.gz bcm5719-llvm-dcceab1a0ace424ba4877f53c4c69433e53f1f3f.zip |
[PowerPC] Add new Future CPU for PowerPC in LLVM
This is a continuation of D70262
The previous patch as listed above added the future CPU in clang. This patch
adds the future CPU in the PowerPC backend. At this point the patch simply
assumes that a future CPU will have the same characteristics as pwr9. Those
characteristics may change with later patches.
Differential Revision: https://reviews.llvm.org/D70333
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCSubtarget.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCSubtarget.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCSubtarget.h b/llvm/lib/Target/PowerPC/PPCSubtarget.h index dcf64a5d6f9..7266d82a08b 100644 --- a/llvm/lib/Target/PowerPC/PPCSubtarget.h +++ b/llvm/lib/Target/PowerPC/PPCSubtarget.h @@ -57,6 +57,7 @@ namespace PPC { DIR_PWR7, DIR_PWR8, DIR_PWR9, + DIR_PWR_FUTURE, DIR_64 }; } |