Eric Christopher | a11d129 | 2011-07-26 00:57:50 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s |
2 | // PR1352 | ||||
3 | |||||
4 | struct foo { | ||||
5 | int x; | ||||
6 | }; | ||||
7 | |||||
8 | void copy(volatile struct foo *p, struct foo *q) { | ||||
9 | // CHECK: call void @llvm.memcpy | ||||
10 | *p = *q; | ||||
11 | } |