[Demangle] Add a few more options to the microsoft demangler
[llvm-complete.git] / test / CodeGen / X86 / volatile.ll
blob29a57976a4aba4afc7ce570023aac2faba9a5cf5
1 ; RUN: llc < %s -mtriple=i686-- -mattr=sse2 | grep movsd | count 5
2 ; RUN: llc < %s -mtriple=i686-- -mattr=sse2 -O0 | grep -v esp | grep movsd | count 5
4 @x = external global double
6 define void @foo() nounwind  {
7   %a = load volatile double, double* @x
8   store volatile double 0.0, double* @x
9   store volatile double 0.0, double* @x
10   %b = load volatile double, double* @x
11   ret void
14 define void @bar() nounwind  {
15   %c = load volatile double, double* @x
16   ret void