Skip to content

Instantly share code, notes, and snippets.

@nikic

nikic/.ll Secret

Created June 29, 2022 09: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 nikic/d50c03ec140bf9de217c9960d4f60a08 to your computer and use it in GitHub Desktop.
Save nikic/d50c03ec140bf9de217c9960d4f60a08 to your computer and use it in GitHub Desktop.
declare void @foo()
declare void @bar()
define void @test(i1 %c) {
entry:
br i1 %c, label %unreachable, label %next
next: ; preds = %entry
unreachable
unreachable: ; preds = %entry
call void @bar()
unreachable
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment