diff options
author | Chris Lattner <sabre@nondot.org> | 2009-06-27 04:38:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-06-27 04:38:55 +0000 |
commit | 434136dedcfc8408bebc91ddb7a7efc82404fa9d (patch) | |
tree | 3e3ed80e0191d565d5f73e8a18345ee343b02aa1 /test | |
parent | dc6fc47e072de28f08b07ba35514a28dfe05687e (diff) | |
download | external_llvm-434136dedcfc8408bebc91ddb7a7efc82404fa9d.zip external_llvm-434136dedcfc8408bebc91ddb7a7efc82404fa9d.tar.gz external_llvm-434136dedcfc8408bebc91ddb7a7efc82404fa9d.tar.bz2 |
factor some logic out into a helper function, allow remat of loads from constant
globals. This implements remat-constant.ll even without aggressive-remat.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74373 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/remat-constant.ll | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/CodeGen/X86/remat-constant.ll b/test/CodeGen/X86/remat-constant.ll index 1b70bf7..8dfed5e 100644 --- a/test/CodeGen/X86/remat-constant.ll +++ b/test/CodeGen/X86/remat-constant.ll @@ -1,5 +1,4 @@ -; RUN: llvm-as < %s | llc -mtriple=x86_64-linux -relocation-model=static -aggressive-remat | grep xmm | count 2 -; XFAIL: * +; RUN: llvm-as < %s | llc -mtriple=x86_64-linux -relocation-model=static | grep xmm | count 2 declare void @bar() nounwind |