Missing IMA in C-Backend

Just starting out? Need help? Post your questions and find answers here.
Cyllceaux
Enthusiast
Enthusiast
Posts: 517
Joined: Mon Jun 23, 2014 1:18 pm

Missing IMA in C-Backend

Post by Cyllceaux »

Hello there... I know the code is wrong, but in the ASM Backend I receive a IMA, what I expected.
On the C-Backend nothing happens.

Code: Select all

Structure strTest
	value.i
EndStructure

Define *test.strTest=5

Debug *test\value
Quin
Addict
Addict
Posts: 1155
Joined: Thu Mar 31, 2022 7:03 pm
Location: Colorado, United States
Contact:

Re: Missing IMA in C-Backend

Post by Quin »

Seems like a bug to me, can reproduce it here with 6.30 beta 4 on Windows 10.
SMaag
Enthusiast
Enthusiast
Posts: 346
Joined: Sat Jan 14, 2023 6:55 pm
Location: Bavaria/Germany

Re: Missing IMA in C-Backend

Post by SMaag »

This is the relevant part of the C output

p_test is defined as a Pointer

Code: Select all

// Define *test.strTest=5
p_test=5;
// 
// Debug *test\value
SYS_Quit();
The SYS-Quit() quit the debugger.
Missing a compiler error message!
Post Reply