mirror of https://github.com/microsoft/clang.git
[Sparc] setjmp and longjmp intrinsic support update to add unit tests and remove accidentally checked-in code.
Related to revision r272782 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@272798 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e03851aea2
commit
32d787f3b4
|
@ -6566,7 +6566,6 @@ public:
|
|||
SparcV8TargetInfo(const llvm::Triple &Triple, const TargetOptions &Opts)
|
||||
: SparcTargetInfo(Triple, Opts) {
|
||||
resetDataLayout("E-m:e-p:32:32-i64:64-f128:64-n32-S64");
|
||||
MaxAtomicPromoteWidth = MaxAtomicInlineWidth = 64;
|
||||
// NetBSD / OpenBSD use long (same as llvm default); everyone else uses int.
|
||||
switch (getTriple().getOS()) {
|
||||
default:
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
// RUN: %clang_cc1 -triple x86_64-windows -emit-llvm < %s| FileCheck %s
|
||||
// RUN: %clang_cc1 -triple powerpc-unknown-unknown -emit-llvm < %s| FileCheck %s
|
||||
// RUN: %clang_cc1 -triple powerpc64-unknown-unknown -emit-llvm < %s| FileCheck %s
|
||||
// RUN: %clang_cc1 -triple sparc-eabi-unknown -emit-llvm < %s | FileCheck %s
|
||||
|
||||
// RUN: %clang_cc1 -triple aarch64-unknown-unknown -emit-llvm-only -verify %s
|
||||
// RUN: %clang_cc1 -triple mips-unknown-unknown -emit-llvm-only -verify %s
|
||||
|
|
Loading…
Reference in New Issue