diff options
Diffstat (limited to 'test/CodeGen/X86/volatile.ll')
-rw-r--r-- | test/CodeGen/X86/volatile.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/volatile.ll b/test/CodeGen/X86/volatile.ll index 1a82014..8d521b4 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 } |