summaryrefslogtreecommitdiff
path: root/test/CodeGen/2003-12-14-ExternInlineSupport.c
diff options
context:
space:
mode:
authorDavid Majnemer <david.majnemer@gmail.com>2015-10-08 06:31:22 +0000
committerDavid Majnemer <david.majnemer@gmail.com>2015-10-08 06:31:22 +0000
commit7006f5216c2f83d99b5df41201f0e809f562aec2 (patch)
tree46e7247050368110dca8a6fa08c48408784d44a1 /test/CodeGen/2003-12-14-ExternInlineSupport.c
parent24825ee43c9b5a7d4f25109be004e30f76d0b890 (diff)
downloadclang-7006f5216c2f83d99b5df41201f0e809f562aec2.tar.gz
Update tests touched by r249656
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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@249660 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/2003-12-14-ExternInlineSupport.c')
-rw-r--r--test/CodeGen/2003-12-14-ExternInlineSupport.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/CodeGen/2003-12-14-ExternInlineSupport.c b/test/CodeGen/2003-12-14-ExternInlineSupport.c
index eb3859c380..cf01fd1ecb 100644
--- a/test/CodeGen/2003-12-14-ExternInlineSupport.c
+++ b/test/CodeGen/2003-12-14-ExternInlineSupport.c
@@ -1,3 +1,4 @@
-// RUN: %clang_cc1 -std=gnu89 %s -emit-llvm -o - | not grep dead_function
+// RUN: %clang_cc1 -triple %itanium_abi_triple -std=gnu89 %s -emit-llvm -o - | FileCheck %s
extern __inline__ void dead_function() {}
+// CHECK-NOT: dead_function