diff options
author | Tim Northover <tnorthover@apple.com> | 2015-11-18 21:10:39 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2015-11-18 21:10:39 +0000 |
commit | 747ae9a7ded98cbfe70134c3f710841a19215c3d (patch) | |
tree | 0b7714ed2cb7d5c054f7a6cc1212a87be076799f /llvm/test/CodeGen | |
parent | cc2e76d57f45e920ecc9a60b543ecc3d8ac03ac8 (diff) | |
download | bcm5719-llvm-747ae9a7ded98cbfe70134c3f710841a19215c3d.tar.gz bcm5719-llvm-747ae9a7ded98cbfe70134c3f710841a19215c3d.zip |
ARM: make sure backend is consistent about exception handling method.
It turns out we decide whether to use SjLj exceptions or some alternative in
two separate places in the backend, and they disagreed with each other. This
led to inconsistent code and is generally a terrible idea.
So make them consistent and add an assert that they *do* match (unfortunately
MCAsmInfo isn't available in opt, so it can't be used to initialise the CodeGen
version directly).
llvm-svn: 253502
Diffstat (limited to 'llvm/test/CodeGen')
-rw-r--r-- | llvm/test/CodeGen/ARM/eh-resume-darwin.ll | 1 | ||||
-rw-r--r-- | llvm/test/CodeGen/ARM/sjljehprepare-lower-empty-struct.ll | 1 | ||||
-rw-r--r-- | llvm/test/CodeGen/Thumb/thumb-shrink-wrapping.ll | 4 |
3 files changed, 4 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/ARM/eh-resume-darwin.ll b/llvm/test/CodeGen/ARM/eh-resume-darwin.ll index 6ac025c6f05..d3a8481275f 100644 --- a/llvm/test/CodeGen/ARM/eh-resume-darwin.ll +++ b/llvm/test/CodeGen/ARM/eh-resume-darwin.ll @@ -1,4 +1,5 @@ ; RUN: llc < %s -mtriple=armv7-apple-ios -arm-atomic-cfg-tidy=0 | FileCheck %s -check-prefix=IOS +; RUN: llc < %s -mtriple=armv7k-apple-ios -arm-atomic-cfg-tidy=0 | FileCheck %s -check-prefix=IOS ; RUN: llc < %s -mtriple=armv7k-apple-watchos -arm-atomic-cfg-tidy=0 | FileCheck %s -check-prefix=WATCHOS declare void @func() diff --git a/llvm/test/CodeGen/ARM/sjljehprepare-lower-empty-struct.ll b/llvm/test/CodeGen/ARM/sjljehprepare-lower-empty-struct.ll index 5d015738623..b44b447b3df 100644 --- a/llvm/test/CodeGen/ARM/sjljehprepare-lower-empty-struct.ll +++ b/llvm/test/CodeGen/ARM/sjljehprepare-lower-empty-struct.ll @@ -2,6 +2,7 @@ ; RUN: llc -mtriple=armv7-apple-ios -O1 < %s | FileCheck %s ; RUN: llc -mtriple=armv7-apple-ios -O2 < %s | FileCheck %s ; RUN: llc -mtriple=armv7-apple-ios -O3 < %s | FileCheck %s +; RUN: llc -mtriple=armv7k-apple-ios < %s | FileCheck %s ; SjLjEHPrepare shouldn't crash when lowering empty structs. ; diff --git a/llvm/test/CodeGen/Thumb/thumb-shrink-wrapping.ll b/llvm/test/CodeGen/Thumb/thumb-shrink-wrapping.ll index 62f78258e7d..09c2ae3b4f7 100644 --- a/llvm/test/CodeGen/Thumb/thumb-shrink-wrapping.ll +++ b/llvm/test/CodeGen/Thumb/thumb-shrink-wrapping.ll @@ -22,7 +22,7 @@ ; ; Prologue code. ; CHECK: push {r7, lr} -; CHECK-NEXT: sub sp, #8 +; CHECK: sub sp, #8 ; ; Compare the arguments and jump to exit. ; After the prologue is set. @@ -418,7 +418,7 @@ if.end: ; preds = %for.body, %if.else ; ; Prologue code. ; CHECK: push {[[TMP:r[0-9]+]], lr} -; CHECK-NEXT: sub sp, #16 +; CHECK: sub sp, #16 ; ; DISABLE: cmp r0, #0 ; DISABLE-NEXT: beq [[ELSE_LABEL:LBB[0-9_]+]] |