mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 18:31:04 +00:00
24 lines
440 B
C
24 lines
440 B
C
|
// RUN: %llvmgcc %s -Os -S -g -o - | grep DW_TAG_structure_type | count 1
|
||
|
// Variable 'a' is optimized but the debug info should preserve its type info.
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
struct foo {
|
||
|
int Attribute;
|
||
|
};
|
||
|
|
||
|
void *getfoo(void) __attribute__((noinline));
|
||
|
|
||
|
void *getfoo(void)
|
||
|
{
|
||
|
int *x = malloc(sizeof(int));
|
||
|
*x = 42;
|
||
|
return (void *)x;
|
||
|
}
|
||
|
|
||
|
int main(int argc, char *argv[]) {
|
||
|
struct foo *a = (struct foo *)getfoo();
|
||
|
|
||
|
return a->Attribute;
|
||
|
}
|
||
|
|