From 9ce58b1cfbb125c77dc7a89e43b767727c7bb4db Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Tue, 2 Jun 2015 17:13:25 +0000 Subject: DebugInfo: Rename testcases from MD* to DI*, NFC As a follow-up to r236120, rename testcases to match the new names. llvm-svn: 238853 --- llvm/test/Assembler/invalid-dilocation-overflow-column.ll | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 llvm/test/Assembler/invalid-dilocation-overflow-column.ll (limited to 'llvm/test/Assembler/invalid-dilocation-overflow-column.ll') diff --git a/llvm/test/Assembler/invalid-dilocation-overflow-column.ll b/llvm/test/Assembler/invalid-dilocation-overflow-column.ll new file mode 100644 index 00000000000..043f84d3ab2 --- /dev/null +++ b/llvm/test/Assembler/invalid-dilocation-overflow-column.ll @@ -0,0 +1,9 @@ +; RUN: not llvm-as < %s -disable-output 2>&1 | FileCheck %s + +!0 = !{} + +; CHECK-NOT: error: +!1 = !DILocation(column: 65535, scope: !0) + +; CHECK: :[[@LINE+1]]:26: error: value for 'column' too large, limit is 65535 +!2 = !DILocation(column: 65536, scope: !0) -- cgit v1.2.3