aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Bendersky <eliben@chromium.org>2012-11-15 16:47:25 -0800
committerEli Bendersky <eliben@chromium.org>2012-11-15 16:47:25 -0800
commitc244f85640375b607142a9ee20c40acfa1b95bc0 (patch)
treecef027b30119ffe67868794c4066c44f4abde7fc
parent4ec1f4d87c6cb532b9fd3e97a817e9424c3a9031 (diff)
Revert the LOCALMOD that disables the NEON feature for Cortex-A8.
Since NEON sandboxing in LLVM is now enabled, correctly sandboxed code will be generated during translation. Ran `pnacl/test.sh test-all` manually BUG=3124 Review URL: https://codereview.chromium.org/11415021
-rw-r--r--lib/Target/ARM/ARM.td7
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/Target/ARM/ARM.td b/lib/Target/ARM/ARM.td
index 5c56b2dc47..23974ad905 100644
--- a/lib/Target/ARM/ARM.td
+++ b/lib/Target/ARM/ARM.td
@@ -220,13 +220,8 @@ def : Processor<"arm1156t2f-s", ARMV6Itineraries, [HasV6T2Ops, FeatureVFP2,
// V7a Processors.
def : ProcessorModel<"cortex-a8", CortexA8Model,
-// @LOCALMOD-BEGIN
-// TODO(pdox): Resolve this mismatch.
- [ProcA8, HasV7Ops, FeatureDB,
-// FeatureNEON,
+ [ProcA8, HasV7Ops, FeatureNEON, FeatureDB,
FeatureDSPThumb2, FeatureHasRAS]>;
-// @LOCALMOD-END
-
def : ProcessorModel<"cortex-a9", CortexA9Model,
[ProcA9, HasV7Ops, FeatureNEON, FeatureDB,
FeatureDSPThumb2, FeatureHasRAS]>;