summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/asm-2.c
blob: 72b23b150592e1caf3d7f02c4633a580f12d0220 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: clang-cc -emit-llvm %s -o %t -triple i386-pc-linux-gnu -O2
// RUN: not grep "load" %t

// <rdar://problem/6841383>
int cpuid(unsigned data) {
  int a, b;
  
  asm("xyz" :"=a"(a), "=d"(b) : "a"(data));
  return a + b;
}