[PowerPC] Removed a test case meant for a later patch

A test case meant for a later patch was accidentally
included.

Original Patch: https://reviews.llvm.org/D105236

Differential revision: https://reviews.llvm.org/D105454
This commit is contained in:
Albion Fung 2021-07-05 22:20:14 -05:00 committed by Albion Fung
parent 7d10dd60ce
commit 203b48c71a
1 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
// REQUIRES: powerpc-registered-target
// RUN: %clang_cc1 -triple powerpc64-unknown-unknown -fsyntax-only \
// RUN: -Wall -Werror -verify %s
// RUN: %clang_cc1 -triple powerpc64le-unknown-unknown -fsyntax-only \
// RUN: -Wall -Werror -verify %s
// RUN: %clang_cc1 -triple powerpc64-unknown-aix -fsyntax-only \
// RUN: -Wall -Werror -verify %s
// RUN: %clang_cc1 -triple powerpc-unknown-aix -fsyntax-only \
// RUN: -Wall -Werror -verify %s
long long lla, llb;
int ia, ib;
void test_trap(void) {
__tdw(lla, llb, 50); //expected-error {{argument value 50 is outside the valid range [0, 31]}}
__tw(ia, ib, 50); //expected-error {{argument value 50 is outside the valid range [0, 31]}}
}