1*f4a2713aSLionel Sambuc // Verify that the %c modifier works and strips off any prefixes from 2*f4a2713aSLionel Sambuc // immediates. 3*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s 4*f4a2713aSLionel Sambuc foo()5*f4a2713aSLionel Sambucvoid foo() { 6*f4a2713aSLionel Sambuc // CHECK: i32 789514 7*f4a2713aSLionel Sambuc __asm__ volatile("/* " "pickANumber" ": %c0 */"::"i"(0xC0C0A)); 8*f4a2713aSLionel Sambuc 9*f4a2713aSLionel Sambuc // Check that non-c modifiers work also 10*f4a2713aSLionel Sambuc // CHECK: i32 123 11*f4a2713aSLionel Sambuc __asm__ volatile("/* " "pickANumber2 " ": %0 */"::"i"(123)); 12*f4a2713aSLionel Sambuc } 13