diff options
Diffstat (limited to 'test/FrontendC/2007-04-24-VolatileStructCopy.c')
-rw-r--r-- | test/FrontendC/2007-04-24-VolatileStructCopy.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/FrontendC/2007-04-24-VolatileStructCopy.c b/test/FrontendC/2007-04-24-VolatileStructCopy.c deleted file mode 100644 index d49e75e..0000000 --- a/test/FrontendC/2007-04-24-VolatileStructCopy.c +++ /dev/null @@ -1,10 +0,0 @@ -// RUN: %llvmgcc -O3 -S -o - %s | grep {volatile store} -// PR1352 - -struct foo { - int x; -}; - -void copy(volatile struct foo *p, struct foo *q) { - *p = *q; -} |