diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-02-17 12:24:17 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-02-17 12:24:17 +0000 |
commit | 6904f05e607b6bbdfa96a2ebb628ebf3a1f21455 (patch) | |
tree | 802a76055fd71499837c0db8e7eea8613b6deaf5 /test/CodeGen | |
parent | e310b3a2a32d356f3f890fb138b1694b53d15f4e (diff) | |
download | external_llvm-6904f05e607b6bbdfa96a2ebb628ebf3a1f21455.zip external_llvm-6904f05e607b6bbdfa96a2ebb628ebf3a1f21455.tar.gz external_llvm-6904f05e607b6bbdfa96a2ebb628ebf3a1f21455.tar.bz2 |
Triple::MinGW64 is deprecated and removed. We can use Triple::MinGW32 generally.
No one uses *-mingw64. mingw-w64 is represented as {i686|x86_64}-w64-mingw32. In llvm side, i686 and x64 can be treated as similar way.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125747 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/X86/2009-06-03-Win64DisableRedZone.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/X86/2009-06-03-Win64SpillXMM.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/2009-06-03-Win64DisableRedZone.ll b/test/CodeGen/X86/2009-06-03-Win64DisableRedZone.ll index 9d06a9e..98b1e0e 100644 --- a/test/CodeGen/X86/2009-06-03-Win64DisableRedZone.ll +++ b/test/CodeGen/X86/2009-06-03-Win64DisableRedZone.ll @@ -1,4 +1,4 @@ -; RUN: llc -mtriple=x86_64-pc-mingw64 < %s | FileCheck %s +; RUN: llc -mtriple=x86_64-mingw32 < %s | FileCheck %s ; CHECK-NOT: -{{[1-9][0-9]*}}(%rsp) define x86_fp80 @a(i64 %x) nounwind readnone { diff --git a/test/CodeGen/X86/2009-06-03-Win64SpillXMM.ll b/test/CodeGen/X86/2009-06-03-Win64SpillXMM.ll index 6e8d9a9..12bd285 100644 --- a/test/CodeGen/X86/2009-06-03-Win64SpillXMM.ll +++ b/test/CodeGen/X86/2009-06-03-Win64SpillXMM.ll @@ -1,4 +1,4 @@ -; RUN: llc -mtriple=x86_64-pc-mingw64 < %s | FileCheck %s +; RUN: llc -mtriple=x86_64-mingw32 < %s | FileCheck %s ; CHECK: subq $40, %rsp ; CHECK: movaps %xmm8, (%rsp) ; CHECK: movaps %xmm7, 16(%rsp) |