diff options
Diffstat (limited to 'test/Assembler/musttail.ll')
-rw-r--r-- | test/Assembler/musttail.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Assembler/musttail.ll b/test/Assembler/musttail.ll index 6e2a9b2..ac60ba2 100644 --- a/test/Assembler/musttail.ll +++ b/test/Assembler/musttail.ll @@ -7,8 +7,8 @@ declare i8* @f(i8*, ...) define i8* @f_thunk(i8* %this, ...) { - %rv = musttail call i8* (i8*, ...)* @f(i8* %this, ...) + %rv = musttail call i8* (i8*, ...) @f(i8* %this, ...) ret i8* %rv } ; CHECK-LABEL: define i8* @f_thunk(i8* %this, ...) -; CHECK: %rv = musttail call i8* (i8*, ...)* @f(i8* %this, ...) +; CHECK: %rv = musttail call i8* (i8*, ...) @f(i8* %this, ...) |