diff options
Diffstat (limited to 'llvm/test/Transforms/GlobalOpt/2004-10-10-CastStoreOnce.ll')
-rw-r--r-- | llvm/test/Transforms/GlobalOpt/2004-10-10-CastStoreOnce.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/GlobalOpt/2004-10-10-CastStoreOnce.ll b/llvm/test/Transforms/GlobalOpt/2004-10-10-CastStoreOnce.ll index bdcf1fa4778..061b9b0670f 100644 --- a/llvm/test/Transforms/GlobalOpt/2004-10-10-CastStoreOnce.ll +++ b/llvm/test/Transforms/GlobalOpt/2004-10-10-CastStoreOnce.ll @@ -4,8 +4,8 @@ @G = internal global i32* null ; <i32**> [#uses=2] define i32 @user() { - %P = load i32** @G ; <i32*> [#uses=1] - %Q = load i32* %P ; <i32> [#uses=1] + %P = load i32*, i32** @G ; <i32*> [#uses=1] + %Q = load i32, i32* %P ; <i32> [#uses=1] ret i32 %Q } |