comparison clang/test/CodeGenCXX/m64-ptr.cpp @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children c4bab56944e8
comparison
equal deleted inserted replaced
147:c2174574ed3a 150:1d019706d866
1 // RUN: %clang_cc1 %s -emit-llvm -triple x86_64-apple-darwin -o - | FileCheck %s
2
3 // Make sure pointers are passed as pointers, not converted to int.
4 // The first load should be of type i8** in either 32 or 64 bit mode.
5 // This formerly happened on x86-64, 7375899.
6
7 class StringRef {
8 public:
9 const char *Data;
10 long Len;
11 };
12 void foo(StringRef X);
13 void bar(StringRef &A) {
14 // CHECK: @_Z3barR9StringRef
15 // CHECK: load i8*, i8**
16 foo(A);
17 // CHECK: ret void
18 }