diff options
Diffstat (limited to 'test/Assembler/invalid-mdlocation-overflow-line.ll')
-rw-r--r-- | test/Assembler/invalid-mdlocation-overflow-line.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Assembler/invalid-mdlocation-overflow-line.ll b/test/Assembler/invalid-mdlocation-overflow-line.ll index 8e19f6919bf9..7a6774231a97 100644 --- a/test/Assembler/invalid-mdlocation-overflow-line.ll +++ b/test/Assembler/invalid-mdlocation-overflow-line.ll @@ -2,8 +2,8 @@ !0 = !{} -; CHECK-NOT: error -!1 = !MDLocation(line: 16777215, scope: !0) +; CHECK-NOT: error: +!1 = !DILocation(line: 4294967295, scope: !0) -; CHECK: <stdin>:[[@LINE+1]]:24: error: value for 'line' too large, limit is 16777215 -!2 = !MDLocation(line: 16777216, scope: !0) +; CHECK: <stdin>:[[@LINE+1]]:24: error: value for 'line' too large, limit is 4294967295 +!2 = !DILocation(line: 4294967296, scope: !0) |