diff options
| author | Tim Northover <tnorthover@apple.com> | 2019-08-03 14:28:34 +0000 |
|---|---|---|
| committer | Tim Northover <tnorthover@apple.com> | 2019-08-03 14:28:34 +0000 |
| commit | a009a60a917bc30940422bcef73f8270566d78db (patch) | |
| tree | 585c11f151ecd35dd07677ae76c12aee922c9a7f /llvm/test/Transforms/JumpThreading | |
| parent | 6bf861298a117f82f453021bc355a1fe38ca818b (diff) | |
| download | bcm5719-llvm-a009a60a917bc30940422bcef73f8270566d78db.tar.gz bcm5719-llvm-a009a60a917bc30940422bcef73f8270566d78db.zip | |
IR: print value numbers for unnamed function arguments
For consistency with normal instructions and clarity when reading IR,
it's best to print the %0, %1, ... names of function arguments in
definitions.
Also modifies the parser to accept IR in that form for obvious reasons.
llvm-svn: 367755
Diffstat (limited to 'llvm/test/Transforms/JumpThreading')
| -rw-r--r-- | llvm/test/Transforms/JumpThreading/thread-loads.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Transforms/JumpThreading/thread-loads.ll b/llvm/test/Transforms/JumpThreading/thread-loads.ll index 8e2edbddcf3..47ef01ebe91 100644 --- a/llvm/test/Transforms/JumpThreading/thread-loads.ll +++ b/llvm/test/Transforms/JumpThreading/thread-loads.ll @@ -496,7 +496,7 @@ declare void @fn3(i64) ; merge fully redudant and then we can jump-thread the block with the ; store. ; -; CHECK-LABEL: define i32 @phi_translate_partial_redundant_loads(i32, i32*, i32* +; CHECK-LABEL: define i32 @phi_translate_partial_redundant_loads(i32 %0, i32* %1, i32* %2 ; CHECK: merge.thread: ; CHECK: store ; CHECK: br label %left_x |

