diff options
Diffstat (limited to 'test/Assembler/invalid-mdlocation-overflow-column.ll')
-rw-r--r-- | test/Assembler/invalid-mdlocation-overflow-column.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Assembler/invalid-mdlocation-overflow-column.ll b/test/Assembler/invalid-mdlocation-overflow-column.ll index d1dbb27173dce..043f84d3ab21b 100644 --- a/test/Assembler/invalid-mdlocation-overflow-column.ll +++ b/test/Assembler/invalid-mdlocation-overflow-column.ll @@ -2,8 +2,8 @@ !0 = !{} -; CHECK-NOT: error -!1 = !MDLocation(column: 255, scope: !0) +; CHECK-NOT: error: +!1 = !DILocation(column: 65535, scope: !0) -; CHECK: <stdin>:[[@LINE+1]]:26: error: value for 'column' too large, limit is 255 -!2 = !MDLocation(column: 256, scope: !0) +; CHECK: <stdin>:[[@LINE+1]]:26: error: value for 'column' too large, limit is 65535 +!2 = !DILocation(column: 65536, scope: !0) |