Re-apply https://github.com/llvm/llvm-project/pull/81196, with a fix that handles the absence of llvm formatting: https://github.com/llvm/llvm-project/pull/91868/commits/3ba650e91eded3543764f37921dcce3b b47d425f
14 lines
185 B
C
14 lines
185 B
C
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
struct Bytes {
|
|
uint8_t ubyte;
|
|
int8_t sbyte;
|
|
};
|
|
|
|
int main() {
|
|
struct Bytes bytes = {0x30, 0x01};
|
|
(void)bytes;
|
|
printf("break here\n");
|
|
}
|