diff options
Diffstat (limited to 'llvm/test/Transforms/Reassociate/optional-flags.ll')
| -rw-r--r-- | llvm/test/Transforms/Reassociate/optional-flags.ll | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/test/Transforms/Reassociate/optional-flags.ll b/llvm/test/Transforms/Reassociate/optional-flags.ll index 5ecc7675f8e..40f7d5bf5b8 100644 --- a/llvm/test/Transforms/Reassociate/optional-flags.ll +++ b/llvm/test/Transforms/Reassociate/optional-flags.ll @@ -20,3 +20,10 @@ define i64 @test1(i64 %a, i64 %b, i64 %c) { %z = add nsw i64 %y, %a ret i64 %z } + +; PR9215 +; CHECK: %s = add nsw i32 %y, %x +define i32 @test2(i32 %x, i32 %y) { + %s = add nsw i32 %x, %y + ret i32 %s +} |

