[polly] r344378 - Fix another error related to YAML quoting.
Zachary Turner via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 12 10:28:40 PDT 2018
Author: zturner
Date: Fri Oct 12 10:28:39 2018
New Revision: 344378
URL: http://llvm.org/viewvc/llvm-project?rev=344378&view=rev
Log:
Fix another error related to YAML quoting.
This one occured in polly, which I didn't build / test the first
time so I didn't catch it.
Modified:
polly/trunk/test/ScopDetectionDiagnostics/ReportUnprofitable.ll
Modified: polly/trunk/test/ScopDetectionDiagnostics/ReportUnprofitable.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/ScopDetectionDiagnostics/ReportUnprofitable.ll?rev=344378&r1=344377&r2=344378&view=diff
==============================================================================
--- polly/trunk/test/ScopDetectionDiagnostics/ReportUnprofitable.ll (original)
+++ polly/trunk/test/ScopDetectionDiagnostics/ReportUnprofitable.ll Fri Oct 12 10:28:39 2018
@@ -29,7 +29,7 @@ target datalayout = "e-m:e-i64:64-f80:12
; YAML: --- !Missed
; YAML: Pass: polly-detect
; YAML: Name: RejectionErrors
-; YAML: DebugLoc: { File: /tmp/test.c, Line: 2, Column: 3 }
+; YAML: DebugLoc: { File: '/tmp/test.c', Line: 2, Column: 3 }
; YAML: Function: onlyWrite
; YAML: Args:
; YAML: - String: The following errors keep this region from being a Scop.
@@ -37,7 +37,7 @@ target datalayout = "e-m:e-i64:64-f80:12
; YAML: --- !Missed
; YAML: Pass: polly-detect
; YAML: Name: Unprofitable
-; YAML: DebugLoc: { File: /tmp/test.c, Line: 2, Column: 3 }
+; YAML: DebugLoc: { File: '/tmp/test.c', Line: 2, Column: 3 }
; YAML: Function: onlyWrite
; YAML: Args:
; YAML: - String: No profitable polyhedral optimization found
@@ -45,7 +45,7 @@ target datalayout = "e-m:e-i64:64-f80:12
; YAML: --- !Missed
; YAML: Pass: polly-detect
; YAML: Name: InvalidScopEnd
-; YAML: DebugLoc: { File: /tmp/test.c, Line: 3, Column: 10 }
+; YAML: DebugLoc: { File: '/tmp/test.c', Line: 3, Column: 10 }
; YAML: Function: onlyWrite
; YAML: Args:
; YAML: - String: Invalid Scop candidate ends here.
@@ -53,7 +53,7 @@ target datalayout = "e-m:e-i64:64-f80:12
; YAML: --- !Missed
; YAML: Pass: polly-detect
; YAML: Name: RejectionErrors
-; YAML: DebugLoc: { File: /tmp/test.c, Line: 7, Column: 3 }
+; YAML: DebugLoc: { File: '/tmp/test.c', Line: 7, Column: 3 }
; YAML: Function: onlyRead
; YAML: Args:
; YAML: - String: The following errors keep this region from being a Scop.
@@ -61,7 +61,7 @@ target datalayout = "e-m:e-i64:64-f80:12
; YAML: --- !Missed
; YAML: Pass: polly-detect
; YAML: Name: Unprofitable
-; YAML: DebugLoc: { File: /tmp/test.c, Line: 7, Column: 3 }
+; YAML: DebugLoc: { File: '/tmp/test.c', Line: 7, Column: 3 }
; YAML: Function: onlyRead
; YAML: Args:
; YAML: - String: No profitable polyhedral optimization found
@@ -69,7 +69,7 @@ target datalayout = "e-m:e-i64:64-f80:12
; YAML: --- !Missed
; YAML: Pass: polly-detect
; YAML: Name: InvalidScopEnd
-; YAML: DebugLoc: { File: /tmp/test.c, Line: 8, Column: 10 }
+; YAML: DebugLoc: { File: '/tmp/test.c', Line: 8, Column: 10 }
; YAML: Function: onlyRead
; YAML: Args:
; YAML: - String: Invalid Scop candidate ends here.
More information about the llvm-commits
mailing list