1; RUN: opt < %s -S | FileCheck %s 2 3define i32 @reuse_arg_names(i32 %X, i32 %Y) { 4 %Z = sub i32 %X, %Y 5 %Q = add i32 %Z, %Y 6 ret i32 %Q 7} 8