summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/asm-2.c
blob: f5b378eb101704c40dc9ee008a9af596f0fae478 (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;
}
OpenPOWER on IntegriCloud