aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2013-08-26 20:22:08 +0000
committerJim Grosbach <grosbach@apple.com>2013-08-26 20:22:08 +0000
commit19dc6e67362afecc3b39ec003c1813dc7fa26f61 (patch)
treeed80dcfffd6dd9a3b4441d67b4d8053ae5bb98a7 /test/CodeGen
parent383a810b129aa5120d6a7f6e88e141ec4a45f61b (diff)
downloadexternal_llvm-19dc6e67362afecc3b39ec003c1813dc7fa26f61.zip
external_llvm-19dc6e67362afecc3b39ec003c1813dc7fa26f61.tar.gz
external_llvm-19dc6e67362afecc3b39ec003c1813dc7fa26f61.tar.bz2
ARM: Enable machine verifier for a few more tests.
Now that fast-isel is in better shape, we can enable the machine verifier for these tests, too. rdar://12594152 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189275 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r--test/CodeGen/ARM/pic.ll2
-rw-r--r--test/CodeGen/ARM/trap.ll4
2 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/ARM/pic.ll b/test/CodeGen/ARM/pic.ll
index 32cea50..9fc7a63 100644
--- a/test/CodeGen/ARM/pic.ll
+++ b/test/CodeGen/ARM/pic.ll
@@ -4,7 +4,7 @@
; call to the external function should come with PLT fixup type.
; RUN: llc < %s -mtriple=armv7-unknown-linux-gnueabi \
-; RUN: -relocation-model=pic -fast-isel \
+; RUN: -relocation-model=pic -fast-isel -verify-machineinstrs \
; RUN: | FileCheck %s
define void @test() {
diff --git a/test/CodeGen/ARM/trap.ll b/test/CodeGen/ARM/trap.ll
index db88a03..6cb26e3 100644
--- a/test/CodeGen/ARM/trap.ll
+++ b/test/CodeGen/ARM/trap.ll
@@ -9,13 +9,13 @@
; RUN: llc -mtriple=armv7 -mattr=+nacl-trap -filetype=obj %s -o - \
; RUN: | llvm-objdump -disassemble -triple armv7 -mattr=+nacl-trap - \
; RUN: | FileCheck %s -check-prefix=ENCODING-NACL
-; RUN: llc -fast-isel -mtriple=armv7-unknown-nacl -filetype=obj %s -o - \
+; RUN: llc -verify-machineinstrs -fast-isel -mtriple=armv7-unknown-nacl -filetype=obj %s -o - \
; RUN: | llvm-objdump -disassemble -triple armv7-unknown-nacl - \
; RUN: | FileCheck %s -check-prefix=ENCODING-NACL
; RUN: llc -mtriple=armv7 -filetype=obj %s -o - \
; RUN: | llvm-objdump -disassemble -triple armv7 - \
; RUN: | FileCheck %s -check-prefix=ENCODING-ALL
-; RUN: llc -fast-isel -mtriple=armv7 -filetype=obj %s -o - \
+; RUN: llc -verify-machineinstrs -fast-isel -mtriple=armv7 -filetype=obj %s -o - \
; RUN: | llvm-objdump -disassemble -triple armv7 - \
; RUN: | FileCheck %s -check-prefix=ENCODING-ALL
; rdar://7961298