Add space between access string and follow-up.

llvm-svn: 279826
This commit is contained in:
Michael Kruse 2016-08-26 15:43:52 +00:00
parent 6b6e38d9b1
commit d262feff80
4 changed files with 6 additions and 6 deletions

View File

@ -262,7 +262,7 @@ void JSONImporter::printScop(raw_ostream &OS, Scop &S) const {
for (std::vector<std::string>::const_iterator I = NewAccessStrings.begin(),
E = NewAccessStrings.end();
I != E; I++)
OS << "New access function '" << *I << "'detected in JSCOP file\n";
OS << "New access function '" << *I << "' detected in JSCOP file\n";
}
typedef Dependences::StatementToIslMapTy StatementToIslMapTy;

View File

@ -15,7 +15,7 @@
; CHECK: double E[*][270336][200000]; // Element size 8
; CHECK: i64 F[*][270336]; // Element size 8
;
; CHECK:New access function '{ Stmt_bb12[i0, i1, i2] -> E[0, i2, i0] }'detected in JSCOP file
; CHECK:New access function '{ Stmt_bb12[i0, i1, i2] -> E[0, i2, i0] }' detected in JSCOP file
;
; CODEGEN:define internal void @create_arrays(i32 %arg, i32 %arg1, i32 %arg2, double %arg3, double %beta, [1056 x double]* %A, [1024 x double]* %B, [1056 x double]* %arg7) #0 {
; CODEGEN:bb:

View File

@ -4,8 +4,8 @@
; different locations than the original ones (but the alignment is the
; default, thus there is no problem).
;
; CHECK-DAG: New access function '{ Stmt_for_body[i0] -> MemRef_B[0] }'detected in JSCOP file
; CHECK-DAG: New access function '{ Stmt_for_body[i0] -> MemRef_A[i0] }'detected in JSCOP file
; CHECK-DAG: New access function '{ Stmt_for_body[i0] -> MemRef_B[0] }' detected in JSCOP file
; CHECK-DAG: New access function '{ Stmt_for_body[i0] -> MemRef_A[i0] }' detected in JSCOP file
;
; void simple_stride(int *restrict A, int *restrict B) {
; for (int i = 0; i < 16; i++)

View File

@ -44,8 +44,8 @@ for.inc11: ; preds = %for.body7
for.end14: ; preds = %for.cond4
ret i32 0
}
; CHECK-DAG: New access function '{ Stmt_for_body7[i0] -> MemRef_B[0] }'detected in JSCOP file
; CHECK-DAG: New access function '{ Stmt_for_body[i0] -> MemRef_A[0] }'detected in JSCOP file
; CHECK-DAG: New access function '{ Stmt_for_body7[i0] -> MemRef_B[0] }' detected in JSCOP file
; CHECK-DAG: New access function '{ Stmt_for_body[i0] -> MemRef_A[0] }' detected in JSCOP file
; Verify that the new access function (see above) is actually used during vector code generation.