https://github.com/epiqc/ScaffCC
Raw File
Tip revision: 9d2cca71cf54ddfebda26e247d82ae7b71d9e03c authored by Pranav Gokhale on 30 June 2018, 18:56:21 UTC
Fix OpenQASM output formatting of Rx and Ry
Tip revision: 9d2cca7
encode-cstyle-method.m
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-fragile-abi  -emit-llvm -o - %s | FileCheck -check-prefix LP64 %s
// rdar: // 7445205

@interface Foo 
- (id)test:(id)one, id two;
@end

@implementation Foo
- (id)test:(id )one, id two {return two; } @end

// CHECK-LP64: internal global [11 x i8] c"@24@0:8@16
back to top