mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Fixed bug generating $c += 1 when $c was derived from a pointer but behind a cast.
This commit is contained in:
19
test/test_suite/compile_time/compile_time_pointer_offset.c3t
Normal file
19
test/test_suite/compile_time/compile_time_pointer_offset.c3t
Normal file
@@ -0,0 +1,19 @@
|
||||
// #target: macos-x64
|
||||
module test;
|
||||
macro checker()
|
||||
{
|
||||
long $b = (iptr) ((uint*) bool.typeid);
|
||||
$b += 1;
|
||||
return $b;
|
||||
}
|
||||
fn int main()
|
||||
{
|
||||
long x = checker();
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* #expect: test.ll
|
||||
|
||||
%x = alloca i64, align 8
|
||||
store i64 ptrtoint (ptr getelementptr (i8, ptr @"$ct.bool", i64 1) to i64), ptr %x, align 8
|
||||
ret i32 0
|
||||
Reference in New Issue
Block a user