Skip to content

Instantly share code, notes, and snippets.

@rhysd
Created May 11, 2015 07:51
Show Gist options
  • Save rhysd/2403a109d44499b82583 to your computer and use it in GitHub Desktop.
Save rhysd/2403a109d44499b82583 to your computer and use it in GitHub Desktop.
; Before
; Function Attrs: inlinehint nounwind
define i64 @foo() #0 {
entry:
%0 = call i64 @foo()
ret i64 %0
}
; After
; Function Attrs: inlinehint nounwind readnone
define i64 @foo() #0 {
entry:
ret i64 undef
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment