How to use LLVMValueRef.CreateConstIntOfString #219
-
(NumberAST has a variable
Is this correct result or is it wrong? |
Beta Was this translation helpful? Give feedback.
Answered by
tannergooding
Sep 22, 2023
Replies: 1 comment
-
Answered this on Discord. The consideration is that you're using You need to use |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
tannergooding
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Answered this on Discord.
The consideration is that you're using
CreateConstIntOfString
withLLVMTypeRef.Double
, when that is not an integer type.You need to use
CreateConstRealOfString
instead.