Skip to content

Instantly share code, notes, and snippets.

@DRMacIver
Created November 3, 2019 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DRMacIver/b14577e77672c65ccf173af0c78e7dc8 to your computer and use it in GitHub Desktop.
Save DRMacIver/b14577e77672c65ccf173af0c78e7dc8 to your computer and use it in GitHub Desktop.
#include "csmith.h"
int16_t a;
int32_t volatile b;
static int32_t *c(uint8_t, uint32_t, uint16_t);
static uint32_t d();
int32_t e() {
uint32_t f[][1] = {1};
c(a, d(), f[0][0]);
return 0;
}
int32_t *c(uint8_t g, uint32_t h, uint16_t i) {
j:
goto j;
}
uint32_t d() {
b;
return 0;
}
int main() { e(); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment