From 0e6094122aa55d2d381ceacc804155c25c312b37 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 19 Jun 2003 17:02:06 +0000 Subject: [PATCH] The actual nicification of calls is now implemented in instcombine, not in funcresolve git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6784 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/FunctionResolve/2002-11-09-ExternFn.ll | 2 +- test/Transforms/FunctionResolve/basictest.ll | 2 +- test/Transforms/FunctionResolve/retmismatch1.ll | 2 +- test/Transforms/FunctionResolve/retmismatch2.ll | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/Transforms/FunctionResolve/2002-11-09-ExternFn.ll b/test/Transforms/FunctionResolve/2002-11-09-ExternFn.ll index 93997cf757a..a0dab65b4e4 100644 --- a/test/Transforms/FunctionResolve/2002-11-09-ExternFn.ll +++ b/test/Transforms/FunctionResolve/2002-11-09-ExternFn.ll @@ -3,7 +3,7 @@ ; RUN: else exit 1 # Make sure opt doesn't abort! ; RUN: fi ; -; RUN: if as < %s | opt -funcresolve | dis | grep '\.\.\.' +; RUN: if as < %s | opt -funcresolve -instcombine | dis | grep '\.\.\.' ; RUN: then exit 1 ; RUN: else exit 0 ; RUN: fi diff --git a/test/Transforms/FunctionResolve/basictest.ll b/test/Transforms/FunctionResolve/basictest.ll index c21142d4530..422b655420b 100644 --- a/test/Transforms/FunctionResolve/basictest.ll +++ b/test/Transforms/FunctionResolve/basictest.ll @@ -1,4 +1,4 @@ -; RUN: if as < %s | opt -funcresolve | dis | grep '\.\.\.' | grep call +; RUN: if as < %s | opt -funcresolve -instcombine | dis | grep '\.\.\.' | grep call ; RUN: then exit 1 ; RUN: else exit 0 ; RUN: fi diff --git a/test/Transforms/FunctionResolve/retmismatch1.ll b/test/Transforms/FunctionResolve/retmismatch1.ll index aeca7af2f8a..fe684d1235b 100644 --- a/test/Transforms/FunctionResolve/retmismatch1.ll +++ b/test/Transforms/FunctionResolve/retmismatch1.ll @@ -5,7 +5,7 @@ ; RUN: else exit 1 # Make sure opt doesn't abort! ; RUN: fi ; -; RUN: if as < %s | opt -funcresolve | dis | grep '\.\.\.' | grep call +; RUN: if as < %s | opt -funcresolve -instcombine | dis | grep '\.\.\.' | grep call ; RUN: then exit 1 ; RUN: else exit 0 ; RUN: fi diff --git a/test/Transforms/FunctionResolve/retmismatch2.ll b/test/Transforms/FunctionResolve/retmismatch2.ll index 1c552ed2758..cffe1a4c9e7 100644 --- a/test/Transforms/FunctionResolve/retmismatch2.ll +++ b/test/Transforms/FunctionResolve/retmismatch2.ll @@ -6,7 +6,7 @@ ; RUN: else exit 1 # Make sure opt doesn't abort! ; RUN: fi ; -; RUN: if as < %s | opt -funcresolve | dis | grep '\.\.\.' | grep call +; RUN: if as < %s | opt -funcresolve -instcombine | dis | grep '\.\.\.' | grep call ; RUN: then exit 1 ; RUN: else exit 0 ; RUN: fi -- 2.34.1