2008-06-09-WeakProp.ll 278 B

123456789101112131415
  1. ; RUN: opt < %s -ipconstprop -S | grep "ret i32 %r"
  2. ; Should not propagate the result of a weak function.
  3. ; PR2411
  4. define weak i32 @foo() nounwind {
  5. entry:
  6. ret i32 1
  7. }
  8. define i32 @main() nounwind {
  9. entry:
  10. %r = call i32 @foo( ) nounwind
  11. ret i32 %r
  12. }