summaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2010-08-12-asm-aggr-arg.c
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-07-26 23:49:39 +0000
committerEric Christopher <echristo@apple.com>2011-07-26 23:49:39 +0000
commite927dc654f4d9529bd13783680636cb0db0eb852 (patch)
tree3cabfda420d2a0dc0abe391ac0f3700b3ef5451e /test/FrontendC/2010-08-12-asm-aggr-arg.c
parent00005782fa860f4b48b3b5261d92541c61ee2495 (diff)
downloadexternal_llvm-e927dc654f4d9529bd13783680636cb0db0eb852.zip
external_llvm-e927dc654f4d9529bd13783680636cb0db0eb852.tar.gz
external_llvm-e927dc654f4d9529bd13783680636cb0db0eb852.tar.bz2
Remove test/FrontendC, almost all of the tests have been migrated
to clang now, the rest are in process (6) or have been deleted. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136191 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC/2010-08-12-asm-aggr-arg.c')
-rw-r--r--test/FrontendC/2010-08-12-asm-aggr-arg.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/FrontendC/2010-08-12-asm-aggr-arg.c b/test/FrontendC/2010-08-12-asm-aggr-arg.c
deleted file mode 100644
index 81ec14b..0000000
--- a/test/FrontendC/2010-08-12-asm-aggr-arg.c
+++ /dev/null
@@ -1,16 +0,0 @@
-// RUN: %llvmgcc %s -S -O0 -o - | FileCheck %s
-// Radar 8288710: A small aggregate can be passed as an integer. Make sure
-// we don't get an error with "input constraint with a matching output
-// constraint of incompatible type!"
-
-struct wrapper {
- int i;
-};
-
-// CHECK: xyz
-int test(int i) {
- struct wrapper w;
- w.i = i;
- __asm__("xyz" : "=r" (w) : "0" (w));
- return w.i;
-}