forked from OSchip/llvm-project
[SystemZ] Let z13 also support FeatureMiscellaneousExtensions.
This processor feature had been left out by mistake from the z13 ProcessorModel. This time with updated test case. Thanks, Hans. Reviewed by Ulrich Weigand. llvm-svn: 274216
This commit is contained in:
parent
fbfc7170fe
commit
25e193da4c
|
@ -92,5 +92,6 @@ def : Processor<"z13", NoItineraries,
|
|||
[FeatureDistinctOps, FeatureLoadStoreOnCond, FeatureHighWord,
|
||||
FeatureFPExtension, FeaturePopulationCount,
|
||||
FeatureFastSerialization, FeatureInterlockedAccess1,
|
||||
FeatureMiscellaneousExtensions,
|
||||
FeatureTransactionalExecution, FeatureProcessorAssist,
|
||||
FeatureVector]>;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
; The index must be extended from i32 to i64.
|
||||
define i32 @f1(<4 x i32> *%ptr, i32 %index) {
|
||||
; CHECK-LABEL: f1:
|
||||
; CHECK: risbg {{%r[0-5]}}, %r3, 30, 189, 2
|
||||
; CHECK: risbgn {{%r[0-5]}}, %r3, 30, 189, 2
|
||||
; CHECK: l %r2,
|
||||
; CHECK: br %r14
|
||||
%vec = load <4 x i32>, <4 x i32> *%ptr
|
||||
|
|
Loading…
Reference in New Issue