diff options
author | Duncan Sands <baldrick@free.fr> | 2009-11-11 15:34:13 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2009-11-11 15:34:13 +0000 |
commit | a3da922a27da1b5db04bbbe6cbf4848a688b6786 (patch) | |
tree | e991ecb4b481a4b412053b02b6a5227a7b1b12e8 /test | |
parent | 012397489b564b9ac1e1b4eed31fd7e71f50db9e (diff) | |
download | external_llvm-a3da922a27da1b5db04bbbe6cbf4848a688b6786.zip external_llvm-a3da922a27da1b5db04bbbe6cbf4848a688b6786.tar.gz external_llvm-a3da922a27da1b5db04bbbe6cbf4848a688b6786.tar.bz2 |
Don't trivially delete unused calls to llvm.invariant.start. This allows
llvm.invariant.start to be used without necessarily being paired with a call
to llvm.invariant.end. If you run the entire optimization pipeline then such
calls are in fact deleted (adce does it), but that's actually a good thing since
we probably do want them to be zapped late in the game. There should really be
an integration test that checks that the llvm.invariant.start call lasts long
enough that all passes that do interesting things with it get to do their stuff
before it is deleted. But since no passes do anything interesting with it yet
this will have to wait for later.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86840 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Transforms/InstCombine/invariant.ll | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/invariant.ll b/test/Transforms/InstCombine/invariant.ll new file mode 100644 index 0000000..c67ad33 --- /dev/null +++ b/test/Transforms/InstCombine/invariant.ll @@ -0,0 +1,16 @@ +; Test to make sure unused llvm.invariant.start calls are not trivially eliminated +; RUN: opt < %s -instcombine -S | FileCheck %s + +declare void @g(i8*) + +declare { }* @llvm.invariant.start(i64, i8* nocapture) nounwind readonly + +define i8 @f() { + %a = alloca i8 ; <i8*> [#uses=4] + store i8 0, i8* %a + %i = call { }* @llvm.invariant.start(i64 1, i8* %a) ; <{ }*> [#uses=0] + ; CHECK: call { }* @llvm.invariant.start + call void @g(i8* %a) + %r = load i8* %a ; <i8> [#uses=1] + ret i8 %r +} |