diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Transforms/SimplifyLibCalls/FFS.ll | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Transforms/SimplifyLibCalls/FFS.ll b/test/Transforms/SimplifyLibCalls/FFS.ll index bdf43ef..d6a504a 100644 --- a/test/Transforms/SimplifyLibCalls/FFS.ll +++ b/test/Transforms/SimplifyLibCalls/FFS.ll @@ -28,3 +28,9 @@ define i32 @main() { ret i32 %rslt5 } + +; PR4206 +define i32 @a(i64) nounwind { + %2 = call i32 @ffsll(i64 %0) ; <i32> [#uses=1] + ret i32 %2 +} |