Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
24
tests/codegen/debug-column.rs
Normal file
24
tests/codegen/debug-column.rs
Normal file
|
@ -0,0 +1,24 @@
|
|||
// Verify that debuginfo column numbers are 1-based byte offsets.
|
||||
//
|
||||
// ignore-windows
|
||||
// compile-flags: -C debuginfo=2
|
||||
|
||||
fn main() {
|
||||
unsafe {
|
||||
// Column numbers are 1-based. Regression test for #65437.
|
||||
// CHECK: call void @giraffe(), !dbg [[A:!.*]]
|
||||
giraffe();
|
||||
|
||||
// Column numbers use byte offests. Regression test for #67360
|
||||
// CHECK: call void @turtle(), !dbg [[B:!.*]]
|
||||
/* ż */ turtle();
|
||||
|
||||
// CHECK: [[A]] = !DILocation(line: 10, column: 9,
|
||||
// CHECK: [[B]] = !DILocation(line: 14, column: 10,
|
||||
}
|
||||
}
|
||||
|
||||
extern "C" {
|
||||
fn giraffe();
|
||||
fn turtle();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue