-
Notifications
You must be signed in to change notification settings - Fork 14k
Closed
Labels
A-codegenArea: Code generationArea: Code generation
Description
This code:
static TEST: int = 10;
static TEST2: &'static int = &TEST;Produces the following IR:
@_ZN4TEST20h60213af30ae88ef1eaaE = internal constant i64 10
@const = private constant i64 10
@_ZN5TEST220hc4be0dea553bf116iaaE = internal constant i64* @constSo TEST2 points to a duplicate of TEST, namely @const, rather than TEST itself.
Metadata
Metadata
Assignees
Labels
A-codegenArea: Code generationArea: Code generation