From 23c70f44e4ed95d72b3e951ef8448bf73ae1ac1f Mon Sep 17 00:00:00 2001
From: Sanjiv Gupta
The type of each index argument depends on the type it is indexing into. When indexing into a (packed) structure, only i32 integer constants are allowed. When indexing into an array, pointer or vector, -integers of any width are allowed (also non-constants). 16-bit -values will be sign extended to 32-bits if required, and 32-bit values -will be sign extended to 64-bits if required.
+integers of any width are allowed (also non-constants).For example, let's consider a C code fragment and how it gets compiled to LLVM:
-- 2.34.1