1 // Verify that the %c modifier works and strips off any prefixes from
3 // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
7 __asm__
volatile("/* " "pickANumber" ": %c0 */"::"i"(0xC0C0A));
9 // Check that non-c modifiers work also
11 __asm__
volatile("/* " "pickANumber2 " ": %0 */"::"i"(123));