diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
commit | 5a5ac124e1efaf208671f01c46edb15f29ed2a0b (patch) | |
tree | a6140557876943cdd800ee997c9317283394b22c /test/Assembler/invalid-mdlocation-overflow-column.ll | |
parent | f03b5bed27d0d2eafd68562ce14f8b5e3f1f0801 (diff) |
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 d1dbb27173dc..043f84d3ab21 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) |