mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 20:06:06 +00:00

Reviewed: http://reviews.llvm.org/D7559 Patch by Rachel Craig; Test cases by Hubert Tong. llvm-svn: 230333
7 lines
227 B
C
7 lines
227 B
C
// RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -E -x c %s
|
|
// RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -E -fno-signed-char -x c %s
|
|
|
|
#if (L'\0' - 1 > 0)
|
|
# error "Unexpected expression evaluation result"
|
|
#endif
|