mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-10 18:11:19 +00:00
c10b8381f7
These test updates almost exclusively around the change in behavior around enum: enums without a definition are considered incomplete except when targeting MSVC ABIs. Since these tests are interested in the 'incomplete-enum' behavior, restrict them to %itanium_abi_triple. llvm-svn: 249660
14 lines
379 B
Objective-C
14 lines
379 B
Objective-C
// Test that system-headerness works for building modules.
|
|
|
|
// RUN: rm -rf %t
|
|
// RUN: %clang_cc1 -triple %itanium_abi_triple -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/cache -isystem %S/Inputs -pedantic -Werror %s -verify -std=c11
|
|
// expected-no-diagnostics
|
|
|
|
@import warning;
|
|
int i = bigger_than_int;
|
|
|
|
#include <stddef.h>
|
|
|
|
#define __need_size_t
|
|
#include <stddef.h>
|