diff options
author | Hal Finkel <hfinkel@anl.gov> | 2012-06-11 19:57:04 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2012-06-11 19:57:04 +0000 |
commit | 5a53c6e3452229759ad0b2d995bc7e37c167b631 (patch) | |
tree | 1a0304061f1ea17261029517841da3023f4fcf3c /lib/Target/PowerPC | |
parent | bd5cafd9bbba2180e7179436fb29071201d5ea9f (diff) | |
download | external_llvm-5a53c6e3452229759ad0b2d995bc7e37c167b631.zip external_llvm-5a53c6e3452229759ad0b2d995bc7e37c167b631.tar.gz external_llvm-5a53c6e3452229759ad0b2d995bc7e37c167b631.tar.bz2 |
Enable MFOCRF generation on the PPC A2 core.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158324 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC')
-rw-r--r-- | lib/Target/PowerPC/PPC.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/PPC.td b/lib/Target/PowerPC/PPC.td index 91e0717..4ad5c54 100644 --- a/lib/Target/PowerPC/PPC.td +++ b/lib/Target/PowerPC/PPC.td @@ -91,8 +91,8 @@ def : Processor<"g5", G5Itineraries, FeatureMFOCRF, FeatureFSqrt, FeatureSTFIWX, Feature64Bit /*, Feature64BitRegs */]>; def : Processor<"a2", PPCA2Itineraries, [DirectiveA2, FeatureBookE, - FeatureFSqrt, FeatureSTFIWX, - Feature64Bit + FeatureMFOCRF, FeatureFSqrt, + FeatureSTFIWX, Feature64Bit /*, Feature64BitRegs */]>; def : Processor<"pwr6", G5Itineraries, [DirectivePwr6, FeatureAltivec, |