aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/volatile.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/volatile.ll')
-rw-r--r--test/CodeGen/X86/volatile.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/volatile.ll b/test/CodeGen/X86/volatile.ll
index 1a82014536e7..8d521b46f7c9 100644
--- a/test/CodeGen/X86/volatile.ll
+++ b/test/CodeGen/X86/volatile.ll
@@ -4,14 +4,14 @@
@x = external global double
define void @foo() nounwind {
- %a = load volatile double* @x
+ %a = load volatile double, double* @x
store volatile double 0.0, double* @x
store volatile double 0.0, double* @x
- %b = load volatile double* @x
+ %b = load volatile double, double* @x
ret void
}
define void @bar() nounwind {
- %c = load volatile double* @x
+ %c = load volatile double, double* @x
ret void
}