From 2d4ebb2755672ee860e29cf0982c4d5247433038 Mon Sep 17 00:00:00 2001 From: John Criswell Date: Tue, 1 Jul 2003 20:31:45 +0000 Subject: [PATCH] Updated the name of the LLVM disassembler so that the test does not fail. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7044 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/LICM/2003-05-02-LoadHoist.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Transforms/LICM/2003-05-02-LoadHoist.ll b/test/Transforms/LICM/2003-05-02-LoadHoist.ll index 5488974536c..e6242f65333 100644 --- a/test/Transforms/LICM/2003-05-02-LoadHoist.ll +++ b/test/Transforms/LICM/2003-05-02-LoadHoist.ll @@ -3,7 +3,7 @@ ; loaded from. Basically if the load gets hoisted, the subtract gets turned ; into a constant zero. ; -; RUN: as < %s | opt -licm -load-vn -gcse -instcombine | llvm-dis | grep load +; RUN: as < %s | opt -licm -load-vn -gcse -instcombine | dis | grep load %X = global int 7 declare void %foo()